Mercurial > sqlpython
changeset 298:231964a69c0a
oops, updating version numbers in code
author | catherine@dellzilla |
---|---|
date | Tue, 24 Mar 2009 15:44:17 -0400 |
parents | f4e8919c5cdf |
children | a8ac8c1b90cb |
files | sqlpython/mysqlpy.py sqlpython/sqlpython.py |
diffstat | 2 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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'''