将 sqlite DB 导出到 csv 问题
当我在 Java 代码中使用 db.execSQL(.mode csv) 时,它会在 logcat 中生成错误。
/AndroidRuntime( 1363): FATAL EXCEPTION: main
/AndroidRuntime( 1363): android.database.sqlite.SQLiteException: near ".": syntax error: .mode csv
但如果我在 sqlite 控制台中发出相同的命令,它就会起作用。我也无法在java代码中设置分隔符。
sqlite> .mode csv
.mode csv
sqlite> .separator ,
.separator ,
sqlite>
谁能与我分享经验或正确的方法是什么?如果提供代码,我将不胜感激。
谢谢 !!
When I used db.execSQL(.mode csv)
in Java code, it generates error in logcat.
/AndroidRuntime( 1363): FATAL EXCEPTION: main
/AndroidRuntime( 1363): android.database.sqlite.SQLiteException: near ".": syntax error: .mode csv
but if I issue the same in sqlite console, it works. I also cannot set separator in java code.
sqlite> .mode csv
.mode csv
sqlite> .separator ,
.separator ,
sqlite>
Can anyone share experience with me or what is correct approach ? I will be appreciated if codes are provided.
Thanks !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.mode csv
语法和其他点命令适用于 sqlite shell,它是基于 SQLite 构建的特定程序。在java中你可以做的只是使用数据库引擎,而不是
.mode
,.help
,.quit
或.separator
来自另一个程序。不过,您可以在此处找到 SQLite shell 的源代码。
然后您可以使用
fossil update trunk
下载最新更新,并在src/shell.c
中查看源代码。您可能会注意到,这是唯一包含其他库的源代码。The
.mode csv
syntax and other dot-commands are proper to the sqlite shell, which is a specific program built on SQLite.What you can do in java is just use the Database engine, not the
.mode
,.help
,.quit
or.separator
from another program.However you can find the source code for the SQLite shell here.
Then you can download the latest updates with
fossil update trunk
and see the source code atsrc/shell.c
. You will probably notice that this is the only piece of source code around that includes additional libraries.