What happens, and/or what is supposed to happen when sqlite runs out of disk space?
In an extremely disk-space constrained situation, I create a bunch of tables, without any sqlite errors, and then later the tables are not found. I see the same thing when inserting rows: no error, but later look-ups don't find inserted rows. I'd like to detect that the write to DB failed at time of write, not a later read. I'm also doing the INSERTS and CREATE TABLES within a transaction, and again all the sqlite calls succeed, even the COMMIT TRANSACTION. There are no other pending statements at the time of the COMMIT TRANSACTION. I'm using version 3.3.4 on Windows. Thanks, Jeffrey Rennie