This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients Craig.Silverstein, PyAcrisel, ned.deily, spicyj
Date 2015-04-05.04:51:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428209518.93.0.117439425534.issue20353@psf.upfronthosting.co.za>
In-reply-to
Content
Arnon, what version of sqlite3 is the Python linked with?  Try:

python3.4 -c "import sqlite3;print(sqlite3.sqlite_version)"

What kind of database access is happening in your program, i.e. strictly multi-read, one writer many reads, multiple-writers?

Also, regarding the workaround, if you do call sqlite3.connect in the main process, check that you keep a reference to it (by assigning the result to a variable) so that the open connection doesn't get garbage-collected.
History
Date User Action Args
2015-04-05 04:51:58ned.deilysetrecipients: + ned.deily, Craig.Silverstein, spicyj, PyAcrisel
2015-04-05 04:51:58ned.deilysetmessageid: <1428209518.93.0.117439425534.issue20353@psf.upfronthosting.co.za>
2015-04-05 04:51:58ned.deilylinkissue20353 messages
2015-04-05 04:51:58ned.deilycreate