Update of /cvsroot/informixdb/informixdb
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4691
Modified Files:
README informixdb.py setup.py
Log Message:
Document new features; getting closer to version 2.4
Index: README
===================================================================
RCS file: /cvsroot/informixdb/informixdb/README,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** README 1 Oct 2006 03:22:48 -0000 1.15
--- README 11 Nov 2006 22:36:39 -0000 1.16
***************
*** 2,6 ****
============
! This is informixdb 2.3, an Informix implementation of the Python
Database API. This release implements version 2.0 of the DB-API:
--- 2,6 ----
============
! This is informixdb 2.4, an Informix implementation of the Python
Database API. This release implements version 2.0 of the DB-API:
***************
*** 77,80 ****
--- 77,85 ----
====
+ From 2.3 to 2.4:
+ - Implement 'named' parameter style to optionally bind query parameters
+ by name
+ - Implement option to retrieve opaque types in their binary representation
+
From 2.2 to 2.3:
- Allow parameter list for executemany() to be arbitrary iterable objects.
***************
*** 274,277 ****
--- 279,283 ----
2.2 2006-03-26 Carsten Haese
2.3 2006-10-01 Carsten Haese
+ 2.4 TBD Carsten Haese
--
Index: setup.py
===================================================================
RCS file: /cvsroot/informixdb/informixdb/setup.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** setup.py 18 Sep 2006 18:53:40 -0000 1.14
--- setup.py 11 Nov 2006 22:36:39 -0000 1.15
***************
*** 217,222 ****
setup (name = 'InformixDB',
! version = '2.3',
! description = 'InformixDB v2.3',
long_description = \
"InformixDB is a DB-API 2.0 compliant interface for IBM Informix\n"
--- 217,222 ----
setup (name = 'InformixDB',
! version = '2.4',
! description = 'InformixDB v2.4',
long_description = \
"InformixDB is a DB-API 2.0 compliant interface for IBM Informix\n"
Index: informixdb.py
===================================================================
RCS file: /cvsroot/informixdb/informixdb/informixdb.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** informixdb.py 13 Sep 2006 04:13:46 -0000 1.16
--- informixdb.py 11 Nov 2006 22:36:39 -0000 1.17
***************
*** 47,51 ****
"""
! version = "2.3"
class Row(object):
--- 47,51 ----
"""
! version = "2.4"
class Row(object):
|