Hello, I have some questions to autocommit mode of SQLite 3.3.4 and its transactions.
Did I understand it right that new or changed row data is only written to disk when the db connection is closed with sqlite3_close? Did I understand it right that after a transaction commit, autocommit is enabled again and the data from the transaction is written to disk not before the db connection is closed like in autocommit mode with sqlite3_close? Is there a way to force a diskwrite without closing the db connection? Thanks Markus