-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Milestone
Description
Details for the issue
What did you do?
Inserting data into a table using the RETURNING keyword in the tab 'Execute SQL'.
CREATE TABLE t0(
a INTEGER PRIMARY KEY,
b DATE DEFAULT CURRENT_TIMESTAMP,
c INTEGER
);
INSERT INTO t0(c) VALUES(random()) RETURNING *;See here for more information and above example query.
What did you expect to see?
The returned data in the output window element.
Note: The data is correctly returned as expected when manually executed via command line.
What did you see instead?
Empty table with correct header, in this case:
| a | b | c |
|---|
Useful extra information
The info below often helps, please fill it out if you're able to. :)
What operating system are you using?
- Windows: ( version: ___ )
- Linux: Arch Linux
- macOS: ( version: ___ )
- Other: ___
What is your DB4S version?
- 3.12.2
- 3.12.1
- 3.12.0
- 3.11.x
- Other: ___
Did you also
- Try out the latest nightly version: https://github.com/sqlitebrowser/sqlitebrowser#nightly-builds
- Search for an existing similar issue: https://github.com/sqlitebrowser/sqlitebrowser/issues?utf8=%E2%9C%93&q=is%3Aissue%20
AlttiRi