UNPKG

309 BJavaScriptView Raw
1
2
3/*
42017-01-02 (3.16.0) Added ".mode quote" to the command-line shell.
52012-12-12 (3.7.15) Added the ".print" command
6
7$ sqlite3 -quote temp/test.db 'select * from test;'
81,'2','3'
92,'ab',456
102,'a''b',456
112,'a"b',456
122,'a\nb',456
132,'ab',456
142,'ab',456
152,'a
16b',456
17*/
18
19var child = require("child_process")
20
21
22