[SQL-CVS] r4210 - SQLObject/trunk/docs
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2010-07-15 15:13:29
|
Author: phd Date: 2010-07-15 09:13:23 -0600 (Thu, 15 Jul 2010) New Revision: 4210 Modified: SQLObject/trunk/docs/SQLObject.txt Log: Merged revision 4209 from branch 0.11: 'backend' parameter was renamed to 'driver'. Modified: SQLObject/trunk/docs/SQLObject.txt =================================================================== --- SQLObject/trunk/docs/SQLObject.txt 2010-07-15 15:12:13 UTC (rev 4209) +++ SQLObject/trunk/docs/SQLObject.txt 2010-07-15 15:13:23 UTC (rev 4210) @@ -1733,9 +1733,9 @@ PostgresConnection supports transactions and all other features. -The user can choose a DB API driver for PostgreSQL by using a "backend" +The user can choose a DB API driver for PostgreSQL by using a "driver" parameter in DB URI or PostgresConnection that can be a comma-separated -list of backend names. Possible backends are: "psycopg2", "psycopg1", +list of driver names. Possible drivers are: "psycopg2", "psycopg1", "psycopg" (tries psycopg2 and psycopg1), "pygresql". Default is "psycopg". SQLite @@ -1752,9 +1752,9 @@ SQLite may have concurrency issues, depending on your usage in a multi-threaded environment. -The user can choose a DB API driver for SQLite by using a "backend" +The user can choose a DB API driver for SQLite by using a "driver" parameter in DB URI or SQLiteConnection that can be a comma-separated list -of backend names. Possible backends are: "pysqlite2" (alias "sqlite2"), +of driver names. Possible drivers are: "pysqlite2" (alias "sqlite2"), "sqlite3", "sqlite" (alias "sqlite1"). Default is to test pysqlite2, sqlite3 and sqlite in that order. @@ -1846,9 +1846,9 @@ .. _pymssql: http://pymssql.sourceforge.net/ .. _adodbapi: http://adodbapi.sourceforge.net/ -The user can choose a DB API driver for MSSQL by using a "backend" +The user can choose a DB API driver for MSSQL by using a "driver" parameter in DB URI or MSSQLConnection that can be a comma-separated list -of backend names. Possible backends are: "adodb" (alias "adodbapi") and +of driver names. Possible drivers are: "adodb" (alias "adodbapi") and "pymssql". Default is to test adodbapi and pymssql in that order. Events (signals) |