将 sqlite DB 导出到 csv 问题

发布于 2024-10-06 15:18:59 字数 453 浏览 2 评论 0原文

当我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话已封尘 2024-10-13 15:18:59

.mode csv 语法和其他点命令适用于 sqlite shell,它是基于 SQLite 构建的特定程序。

在java中你可以做的只是使用数据库引擎,而不是.mode.help.quit.separator 来自另一个程序。

不过,您可以在此处找到 SQLite shell 的源代码。

fossil clone http://www.sqlite.org/src _my_sqlite_repository
mkdir SQLite_source
cd SQLite_source
fossil open ../_my_sqlite_repository

然后您可以使用 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.

fossil clone http://www.sqlite.org/src _my_sqlite_repository
mkdir SQLite_source
cd SQLite_source
fossil open ../_my_sqlite_repository

Then you can download the latest updates with fossil update trunk and see the source code at src/shell.c. You will probably notice that this is the only piece of source code around that includes additional libraries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文