Yes I believe so. For my UPDATES, currently (things have moved around quite a
bit for me trying to solve this)

sqlite3_exec(this->hDBC_, "BEGIN EXCLUSIVE TRANSACTION;", NULL, NULL, 0);

sqlite3_prepare_v2(this->hDBC_, updateStatement, -1, &this->hStmt_, 0);

sqlite3_bind_blob(this->hStmt_, 1, blob, blobSize, SQLITE_STATIC);

sqlite3_step(this->hStmt_);

sqlite3_exec(this->hDBC_, "END TRANSACTION;", NULL, NULL, 0);

sqlite3_finalize(this->hStmt_);



--
View this message in context: 
http://sqlite.1065341.n5.nabble.com/Memory-DB-Query-does-not-return-all-records-after-Update-tp67267p67292.html
Sent from the SQLite mailing list archive at Nabble.com.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to