What is the recommended python module for SQL database access?

Chris Angelico rosuav at gmail.com
Sun Feb 9 08:36:25 EST 2014


On Mon, Feb 10, 2014 at 12:27 AM, Asaf Las <roegltd at gmail.com> wrote:
> i did it just to test sqlite3 behavior and actually test was related to
> simulation of  unique incremental sequence number/counter for
> independently spawned tasks accessing counter in non deterministic manner.

Sure. I would expect that you'd get steadily increasing sequence IDs,
but that they might be a major bottleneck. SQLite is (far as I can
tell, at least - haven't personally tested it) quite solid with its
locking; at the expense of performance, but carefully reliable.

ChrisA



More information about the Python-list mailing list