Re: Which SQL module to use?

2005-10-04 Thread Bruno Desthuilliers
mrstephengross a écrit : > I'd like to do some basic SQL stuff in Python. It seems like there are > a heck of a lot of SQL modules for Python. What's the simplest and > easiest one to use? Probably the one that go with your RDBMS. -- http://mail.python.org/mailman/listinfo/python-list

Re: Which SQL module to use?

2005-10-04 Thread Steve Bergman
mrstephengross wrote: >I'd like to do some basic SQL stuff in Python. It seems like there are >a heck of a lot of SQL modules for Python. What's the simplest and >easiest one to use? > > The suggestion to use sqllite is probably a good one to get started. I'm a PostgreSQL fan and use pygresql.

Re: Which SQL module to use?

2005-10-04 Thread Ed Hotchkiss
I'm using MySQLdb. I use a FREE MySQL server at freesql.org. I also have an example class and some functions that use the module. even a simple script that turns a .cvs into a mysql table. contact me if interested.   -edward -- http://mail.python.org/mailman/listinfo/python-list

Re: Which SQL module to use?

2005-10-04 Thread Gerhard Häring
mrstephengross wrote: > I'd like to do some basic SQL stuff in Python. It seems like there are > a heck of a lot of SQL modules for Python. What's the simplest and > easiest one to use? It looks like pysqlite would be good for getting started with the SQL/Python combo: http://www.pysqlite.org/

Re: Which SQL module to use?

2005-10-04 Thread Philipp
mrstephengross schrieb: > I'd like to do some basic SQL stuff in Python. It seems like there are > a heck of a lot of SQL modules for Python. What's the simplest and > easiest one to use? > > Thanks, > --Steve ([EMAIL PROTECTED]) > Do you have any DBMS in mind? Philipp -- http://mail.python.or

Which SQL module to use?

2005-10-04 Thread mrstephengross
I'd like to do some basic SQL stuff in Python. It seems like there are a heck of a lot of SQL modules for Python. What's the simplest and easiest one to use? Thanks, --Steve ([EMAIL PROTECTED]) -- http://mail.python.org/mailman/listinfo/python-list