The official references don't include anything since the modules are just
implementations of the DBAPI standard - getting to know that standard will
help you immensely.
http://www.python.org/sigs/db-sig/status.html
Alternately, try using PDO (Python Database Objects). You will still need a
DBAPI complaint module for PDO to work correctly, but it is designed to be
easy to use and provides some nice features like column-access-by-name,
while still being lightweight and very fast. Oh, and its free.
http://pdo.neurokode.com
~Jon Franz
NeuroKode Labs, LLC
----- Original Message -----
From: "Chris Stiles" <s4fu->
To: <python->
Sent: Wednesday, May 12, 2004 12:02 PM
Subject: Python+SQL
> What are my options for using Python and SQL - specifically mysql ? So far
> I've found pysqldb and python-mysql on sourceforge, but the official
> references don't seem to include anything.
>
> Is there an API that supports the 'table row expressed/mapped to object'
> paradigm ?
>
> --
> regards, chris
>
>