Revision 1 as of 2003-02-18 10:42:24

Clear message

This page should summarize topics for the DB API 3.0. It is meant to provide

A related page is ExtendingTheDbApi, which lists features that aren't general enough to make it into the spec.

TableOfContents

Unified Parameter Style

Possibilities

Additional Driver Objects

Prepared statements in addition to Connection and Cursor.

Parameter Passing

cursor.execute ("SELECT where size = :size", {'size': localvar}) vs.cursor.execute ("SELECT where size = :size", size = localvar)

cursor.execute ("SELECT where size = ?", [localvar]) vs. cursor.execute ("SELECT where size = ?", localvar)

Schema Information

Unable to edit the page? See the FrontPage for instructions.