Using the \sqlexport command on an SQLite DB, the -SQ parameter doesn't seem to change the quotes used to surround strings.
Example:
$ create table test(col int, col2 text)
$ go
$ insert into test values(1, "msg")
$ go
$ sqlexport test
"col","col2"
1,'msg'<---Expected would be 1,"msg" as the man page for sqlexport says that the default is double-quote
$ sqlexport test -SQ none
"col","col2"
1,'msg'<---Expected would be 1,msg as -SQ param says none
Tested on Ubuntu 12.10 using ADStudio 13 Dev 38.
Issue #8004 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build 30431 |
No time estimate |
Verified using ADStudio 13 Dev 42, works as expected now.
Closed.