1.使用sqlite3_exec()函數插入大量的數據時,須要使用事務,不然執行插入會慢。
sqlite3_exec(pdb, "begin transaction", 0, 0, 0);
for(...)
sqlite3_exec(pdb, sql, 0, 0, &err_msg);
sqlite3_exec(pdb, "commit transaction", 0, 0, 0);
2.上面的代碼能夠很好的提高速度,又有一個問題若是插入操做執行失敗,則err_msg須要釋放。
注意不能使用free以及delete釋放,須要使用函數sqlite3_free(err_msg),或者不寫err_msg用0代替。
3.在lua for windows中使用sqlite3,code:
require 'luasql.sqlite3'
env = assert(luasql.sqlite3())
db = assert(env:connect('tst.db'))
--使用事務
db:setautocommit(false)
res = assert(db:execute[[create table people(name text, sex text, primary key(name))]])
assert(db:commit())
db:close()
env:close()
4.使用sqlite3.lib庫時可能出現錯誤:fatal error LNK1103: debugging information corrupt; recompile module
官方介紹這是一個調試器bug,能夠關閉調試properties->linker->debugging中generate debug選項改成0
不過這樣就沒法斷點調試。不過sqlite3.dll不會出現此問題. sql