[sqlite] Prevent receiving "ok" when using the .dump and .output commands

2020-02-14 Thread Iulian Onofrei
How can I prevent receiving the "ok" added here:  https://www.sqlite.org/src/info/b3692c406f7ba625  when I'm using `sqlite -cmd "PRAGMA key " database.sqlite .output`? iulianOnofrei ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] Test

2020-02-14 Thread Iulian Onofrei
test iulianOnofrei ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] Prevent receiving "ok" when using the .dump and .output commands

2020-02-13 Thread Iulian Onofrei
Hi, How can I prevent receiving the "ok" added here:  https://www.sqlite.org/src/info/b3692c406f7ba625  when I'm using `sqlite -cmd "PRAGMA key " database.sqlite .output`? iulianOnofrei ___ sqlite-users mailing list

Re: [sqlite] .DUMP displays floats differently from SELECT

2018-01-22 Thread Iulian Onofrei
Hi, This is clearly a bug, as it outputs incorrect and different output from the previous versions. I have a "REAL" column with float values having up to 2 decimals, and using ".dump" with the latest version incorrectly converts them like this: "0.0" -> "0.0" "0.05" -> "0.050002775"