From: Gerhard H?r. <gha...@us...> - 2002-09-08 16:17:23
|
Update of /cvsroot/pypgsql/pypgsql In directory usw-pr-cvs1:/tmp/cvs-serv31042 Modified Files: README Log Message: 08SEP2002 gh Added note about case-insensitiveness of column access in PgResultSet. Index: README =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/README,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** README 5 Jun 2002 08:43:36 -0000 1.24 --- README 8 Sep 2002 16:17:19 -0000 1.25 *************** *** 1,4 **** #ident "@(#) $Id$" ! pyPgSQL - v2.1: Python DB-API 2.0 Compliant Interface Module for PostgreSQL. =========================================================================== --- 1,4 ---- #ident "@(#) $Id$" ! pyPgSQL - v2.2: Python DB-API 2.0 Compliant Interface Module for PostgreSQL. =========================================================================== *************** *** 6,10 **** =============================== ! pyPgSQL, version 2.0 A Python DB-API 2.0 compliant interface for PostgreSQL Copyright 2000 by Billy G. Allie. --- 6,10 ---- =============================== ! pyPgSQL, version 2.2 A Python DB-API 2.0 compliant interface for PostgreSQL Copyright 2000 by Billy G. Allie. *************** *** 1354,1359 **** 4. The fetchone method will return a PgResultSet object instead of a sequence. A PgResultSet emulates a Python List object (for DB-API 2.0 compliance), ! but also acts as a dictionary and allows the column data to be retrieved ! by using the column name as an attribute of the PgResultSet object. [Note: This feature is controlled by the fetchReturnsList attribute of the PgSQL module.] --- 1354,1360 ---- 4. The fetchone method will return a PgResultSet object instead of a sequence. A PgResultSet emulates a Python List object (for DB-API 2.0 compliance), ! but also acts as a dictionary and allows the column data to be retrieved by ! using the column name as an attribute of the PgResultSet object. The column ! names are case-insensitive. [Note: This feature is controlled by the fetchReturnsList attribute of the PgSQL module.] |