Hi,
I have two questions about shared cache mode of SQLite.
1. When is shared cache of SQLite deallocated?
A last call of sqlite3_close()? Or end of thread procedure?
2. Can I use read_uncommitted isolation in the following case?
(Connection1 and Connection2 is established by the same thread
and shared cache mode was enabled)
Connection1: Opened for :memory:
ATTACH DATABASE 'mydb.db' as mydb;
SELECT myname FROM mydb.mytable;
Connection2: Opened for mydb.db
INSERT INTO mytable(myname) VALUES('myname');
Regards,
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------