Re: Database module & multithreading

2007-03-11 Thread Gabriel Genellina
En Sun, 11 Mar 2007 09:19:51 -0300, Jon Ribbens <[EMAIL PROTECTED]> escribió: > In article <[EMAIL PROTECTED]>, > Gabriel Genellina wrote: > I don't know, but stock Python 2.5 seems to stick mysterious '.egg' > files in the site-packages directory when you install things. Whi

Re: Database module & multithreading

2007-03-11 Thread Jon Ribbens
In article <[EMAIL PROTECTED]>, Gabriel Genellina wrote: I don't know, but stock Python 2.5 seems to stick mysterious '.egg' files in the site-packages directory when you install things. >>> >>> Which "stock" Python? Not the one from www.python.org... >> >> Yes, the one from www.python.or

Re: Database module & multithreading

2007-03-11 Thread Gabriel Genellina
En Sun, 11 Mar 2007 07:55:15 -0300, Jon Ribbens <[EMAIL PROTECTED]> escribió: > In article <[EMAIL PROTECTED]>, > Gabriel Genellina wrote: >>> I don't know, but stock Python 2.5 seems to stick mysterious '.egg' >>> files in the site-packages directory when you install things. >> >> Which "stoc

Re: Database module & multithreading

2007-03-11 Thread Jon Ribbens
In article <[EMAIL PROTECTED]>, Gabriel Genellina wrote: >> I don't know, but stock Python 2.5 seems to stick mysterious '.egg' >> files in the site-packages directory when you install things. > > Which "stock" Python? Not the one from www.python.org... Yes, the one from www.python.org. -- http:

Re: Database module & multithreading

2007-03-11 Thread Gabriel Genellina
En Sat, 10 Mar 2007 22:44:43 -0300, Jon Ribbens <[EMAIL PROTECTED]> escribió: > I don't know, but stock Python 2.5 seems to stick mysterious '.egg' > files in the site-packages directory when you install things. Which "stock" Python? Not the one from www.python.org... If you are talking about

Re: Database module & multithreading

2007-03-10 Thread Jon Ribbens
In article <[EMAIL PROTECTED]>, John Nagle wrote: > Is the "egg" packaging gimmick considered mainstream Python, or just some > wierd idea from the "Peak" people? It seems to complicate installation > without adding much value. I don't know, but stock Python 2.5 seems to stick mysterious '.eg

Re: Database module & multithreading

2007-03-10 Thread fumanchu
On Mar 10, 6:14 am, "jupiter" <[EMAIL PROTECTED]> wrote: > 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

Re: Database module & multithreading

2007-03-10 Thread John Nagle
Jon Ribbens wrote: > In article <[EMAIL PROTECTED]>, John Nagle wrote: > >> As for "some modules not being maintained", it really is sad >>that MySQLdb is kind of behind. If you're running Windows and need >>MySQL, you're either stuck with Python 2.4 > > > Looks like that's changed: > > ht

Re: Database module & multithreading

2007-03-10 Thread Jon Ribbens
In article <[EMAIL PROTECTED]>, John Nagle wrote: > As for "some modules not being maintained", it really is sad > that MySQLdb is kind of behind. If you're running Windows and need > MySQL, you're either stuck with Python 2.4 Looks like that's changed: http://sourceforge.net/project/showfi

Re: Database module & multithreading

2007-03-10 Thread John Nagle
Michael Bentley wrote: >> >> Thanx for this pointer buddy! I have done my homework. Some Database >> modules are not actively maintained some modules does not work with >> Python 2.5. At this moment I am using Sqlite3 which is pretty fast but >> it dosent allow me to use multi threading so which d

Re: Database module & multithreading

2007-03-10 Thread Jorge Godoy
"jupiter" <[EMAIL PROTECTED]> writes: > conn = psycopg2.connect("dbname=test user=test") > > Traceback (most recent call last): > File "", line 1, in > conn = psycopg2.connect("dbname=test user=test") > OperationalError: could not connect to server: Connection refused > (0x274D/10061) >

Re: Database module & multithreading

2007-03-10 Thread Jean-Paul Calderone
On 10 Mar 2007 07:40:23 -0800, jupiter <[EMAIL PROTECTED]> wrote: >On Mar 10, 8:16 pm, Michael Bentley <[EMAIL PROTECTED]> wrote: >> > Thanx for this pointer buddy! I have done my homework. Some Database >> > modules are not actively maintained some modules does not work with >> > Python 2.5. At t

Re: Database module & multithreading

2007-03-10 Thread jupiter
On Mar 10, 8:42 pm, [EMAIL PROTECTED] (Alex Martelli) wrote: > jupiter <[EMAIL PROTECTED]> wrote: > >... > > > Python 2.5. At this moment I am using Sqlite3 which is pretty fast but > > it dosent allow me to use multi threading so which database module is > > better in terms of multithreading >

Re: Database module & multithreading

2007-03-10 Thread Alex Martelli
jupiter <[EMAIL PROTECTED]> wrote: ... > Python 2.5. At this moment I am using Sqlite3 which is pretty fast but > it dosent allow me to use multi threading so which database module is > better in terms of multithreading Perhaps psycopg2 (with PostgreSQL as the engine), according to

Re: Database module & multithreading

2007-03-10 Thread jupiter
On Mar 10, 8:16 pm, Michael Bentley <[EMAIL PROTECTED]> wrote: > > Thanx for this pointer buddy! I have done my homework. Some Database > > modules are not actively maintained some modules does not work with > > Python 2.5. At this moment I am using Sqlite3 which is pretty fast but > > it dosent a

Re: Database module & multithreading

2007-03-10 Thread jupiter
On Mar 10, 8:16 pm, Michael Bentley <[EMAIL PROTECTED]> wrote: > > Thanx for this pointer buddy! I have done my homework. Some Database > > modules are not actively maintained some modules does not work with > > Python 2.5. At this moment I am using Sqlite3 which is pretty fast but > > it dosent a

Re: Database module & multithreading

2007-03-10 Thread Michael Bentley
> > Thanx for this pointer buddy! I have done my homework. Some Database > modules are not actively maintained some modules does not work with > Python 2.5. At this moment I am using Sqlite3 which is pretty fast but > it dosent allow me to use multi threading so which database module is > better i

Re: Database module & multithreading

2007-03-10 Thread Jorge Godoy
"jupiter" <[EMAIL PROTECTED]> writes: > 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 mu

Re: Database module & multithreading

2007-03-10 Thread jupiter
On Mar 10, 7:29 pm, Laurent Pointal <[EMAIL PROTECTED]> wrote: > 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 t

Re: Database module & multithreading

2007-03-10 Thread Laurent Pointal
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 capabil