[pywin32-checkins] pywin32/adodbapi readme.txt,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Vernon C. <kf...@us...> - 2008-08-29 14:30:45
|
Update of /cvsroot/pywin32/pywin32/adodbapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25906 Modified Files: readme.txt Log Message: update to version 2.2. Index: readme.txt =================================================================== RCS file: /cvsroot/pywin32/pywin32/adodbapi/readme.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** readme.txt 6 Aug 2008 16:18:06 -0000 1.2 --- readme.txt 29 Aug 2008 14:30:55 -0000 1.3 *************** *** 1,5 **** Project ------- ! adodbapi -- win32 inclusion version A Python DB-API 2.0 module that makes it easy to use Microsoft ADO --- 1,5 ---- Project ------- ! adodbapi A Python DB-API 2.0 module that makes it easy to use Microsoft ADO *************** *** 16,22 **** Prerequisites: ! * Python 2.3 or higher. ! * (this version included within) Mark Hammond's win32all python for windows extensions. Whats new in version 2.1.1? --- 16,35 ---- Prerequisites: ! * C Python 2.3 or higher ! and pywin32 (Mark Hammond's python for windows extensions.) ! Note: as of 2.1.1, adodbapi is included in pywin32 versions 211 and later. ! or ! Iron Python 2.0b4 or higher. + Whats new in version 2.2 + 1. Runs on Iron Python 2.0b4 with a few restrictions. It will not handle Longs or BLOB correcly, + and has some date/time problems (using the "time" module as opposed to "datetime"). + Bug reports have been submitted to Iron Python, which, if fixed, will remove all restrictions. + 2. More agressive at making sure to retrieve Numeric and Currency colums as decimal.Decimal. + 3. Has a new conversion module. To make Numerics retrieve as strings, execute: + adodbapi.variantConversions[adodbapi.adNumeric] = adodbapi.cvtString + 4. Switch to new-style classes and eliminate string exceptions. + 5. Lots of cleanup in the code and the unit test. + 6. More agressive at determining .rowcount after an operation. Whats new in version 2.1.1? |