按照 Sqlite 的PRAGMA的说明,我发现PRAGMA schema.journal_mode;
更改了 journal_mode 并给出了我选择的选项off
来提高插入功能的性能。我写:
SQLiteConnection m_dbConnection = new SQLiteConnection("Data Source=MyDatabase.sqlite;Version=3;PRAGMA Schema.journal_mode=off;");
它打开一个名为的数据库MyDatabase.sqlite
和命令
PRAGMA Schema.journal_mode=off;
写在最后,我相信会关闭 sqlite 数据库的日志记录,但我不知道该怎么做,如果这是正确的方法,那么我做错了什么,因为我看不到任何变化添加 PRAGMA 命令后的性能。
我从Tigran's Blog Post on Sqlite中提到的链接下载了 Sqlite 库