Python Database Objects (PDO)

Bryan J Gudorf bryan@bryangudorf.com
Wed, 17 Sep 2003 00:19:58 -0400


   We at NeuroKode Labs, LLC, are proud to announce the release of Python
Database Objects (PDO).

   Python Database Objects (PDO) provides an easy to use Object Oriented API
for database developers. PDO utilizes DB-API modules for database access,
but allows for a Common Object Oriented API across RDBMS. Thus, PDO can be
thought of as a 'wrapper' around the DB-API and database specific modules.

   Here is a quick example of the usage of Python Database Objects (PDO):
        import pdo
        DBConn
=pdo.connect('Module=MySQLdb;User=SalesReader;Passwd=secretpassword;DB=Sales
')
        Results = DBConn.openRS("SELECT * FROM Customers")
        while Results.next()
            print "Name: " + Results['Name'].value

    Downloads for Python Database Objects are available on SourceForge.Net
or for more information please visit pdo.neurokode.com.

~Bryan J Gudorf
NeuroKode Labs, LLC