# HG changeset patch # User catherine@dellzilla # Date 1237923857 14400 # Node ID 231964a69c0afc9f8bc965b7cedd98470d77449c # Parent f4e8919c5cdfeb737cee127d4c67330dc9d2a300 oops, updating version numbers in code diff -r f4e8919c5cdf -r 231964a69c0a sqlpython/mysqlpy.py --- a/sqlpython/mysqlpy.py Tue Mar 24 15:28:26 2009 -0400 +++ b/sqlpython/mysqlpy.py Tue Mar 24 15:44:17 2009 -0400 @@ -1,5 +1,5 @@ #!/usr/bin/python -# MySqlPy V1.6.1 +# MySqlPy V1.6.2 # Author: Luca.Canali@cern.ch # # @@ -13,9 +13,9 @@ class mysqlpy(sqlpyPlus): ''' -MySqlPy V1.6.1 - 'sqlplus in python' +MySqlPy V1.6.2 - 'sqlplus in python' Author: Luca.Canali@cern.ch -Rev: 1.6.1, 15-Mar-09 +Rev: 1.6.2, 24-Mar-09 Companion of SqlPython, a python module that reproduces Oracle's command line within python and sqlpyPlus. Major contributions by Catherine Devlin, http://catherinedevlin.blogspot.com diff -r f4e8919c5cdf -r 231964a69c0a sqlpython/sqlpython.py --- a/sqlpython/sqlpython.py Tue Mar 24 15:28:26 2009 -0400 +++ b/sqlpython/sqlpython.py Tue Mar 24 15:44:17 2009 -0400 @@ -1,5 +1,5 @@ # -# SqlPython V1.6.1 +# SqlPython V1.6.2 # Author: Luca.Canali@cern.ch, Apr 2006 # Rev 25-Feb-09 # @@ -10,7 +10,7 @@ import cmd2,getpass,binascii,cx_Oracle,re,os import sqlpyPlus -__version__ = '1.6.1' +__version__ = '1.6.2' class sqlpython(cmd2.Cmd): '''A python module to reproduce Oracle's command line with focus on customization and extention'''