Database module & multithreading
Laurent Pointal
laurent.pointal at wanadoo.fr
Sat Mar 10 09:29:26 EST 2007
jupiter wrote:
> Hi guys!!!
>
>
> Just one quick question... Which database module should I use when I
> want to use multi threading as my application requires lots of data
> from internet ???? I also want this database module to be fast, simple
> n efficient, in any case multi threading capabilities are # 1
> requirement.
>
>
> Thanx Guys
>
> Anil
See the threadsafety flag of Python DB-API V2 compliant database modules.
0 = no thread safe
1 = threads may share module
2 = + may share connections
3 = + may share cursors
A+
Laurent.
More information about the Python-list
mailing list