DCOracle v1.3.0 Released

We are proud to announce the arrival of a new bouncy baby Oracle adapter for the Python community. This release fixes some outstanding bugs, as well as adding one new feature: statement handles. You can find it at: http://www.zope.org/Products/DCOracle Changes are as follows: Digital Creations Oracle Release Notes 1.3.0 This release adds support for statement handles using the db.prepare() syntax. Bugs fixed: - Various LONG/LONG RAW mishandlings in return machinery. 1.2.1 This is a bug fix release Bugs fixed: - When connecting to Oracle 8, connection strings with a server name were not parsed correctly. - Connection errors were reported incorrectly. 1.2.0 This release adds Oracle large object (LOB) support when used with Oracle 8. 1.1.0 The organization os the release has changed substantially to reflect the gact that it is an open source release. Bug Fixes - Connection to Oracle 7 databases failed due to details in passing unused arguments to the database logon call. - dbi.dbiDate did not handle time time and some string inputs to it's constructor properly. - Stored procedure support was completely broken. Features - Added two new database utility methods: objects(system=0) -- Get names and types for user or system objects. getSource(proc) -- Get the source for a named procedure or function. - When passing a single argument to a cursor (or database) execute method, the single argument need not be tuplated. For example:: c.execute('select from friends where name=:p1', 'Guido') is equivalent to:: c.execute('select from friends where name=:p1', ('Guido',)) - Now use defered parse mode which reduces communication with the database server by defering certain communication. This may speed things up quite a bit. 1.0 This is the first release of the Digital Creations Oracle Package. == | Christopher Petrilli Python Powered Digital Creations, Inc. | petrilli@digicool.com http://www.digicool.com <P><A HREF="http://www.zope.org/Products/DCOracle/">DCOracle 1.3.0</A> - a DBI-compliant extension module for Oracle. (27-Aug-99) -- ----------- comp.lang.python.announce (moderated) ---------- Article Submission Address: python-announce@python.org Python Language Home Page: http://www.python.org/ Python Quick Help Index: http://www.python.org/Help.html ------------------------------------------------------------
participants (1)
-
Christopher Petrilli