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. -- http://mail.python.org/mailman/listinfo/python-list