comparison sqlpython/sqlpython.py @ 250:aec778ef82b6

print full help on -h
author catherine@Elli.myhome.westell.com
date Thu, 12 Mar 2009 07:58:42 -0400
parents f0f293d83337
children 39ecc4b65b11
comparison
equal deleted inserted replaced
249:9e3e49c95abf 250:aec778ef82b6
1 # 1 #
2 # SqlPython V1.6.0 2 # SqlPython V1.6.1
3 # Author: Luca.Canali@cern.ch, Apr 2006 3 # Author: Luca.Canali@cern.ch, Apr 2006
4 # Rev 25-Feb-09 4 # Rev 25-Feb-09
5 # 5 #
6 # A python module to reproduce Oracle's command line 'sqlplus-like' within python 6 # A python module to reproduce Oracle's command line 'sqlplus-like' within python
7 # Intended to allow easy customizations and extentions 7 # Intended to allow easy customizations and extentions
8 # Best used with the companion modules sqlpyPlus and mysqlpy 8 # Best used with the companion modules sqlpyPlus and mysqlpy
9 # See also http://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython 9 # See also http://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython
10 10
11 import cmd2,getpass,binascii,cx_Oracle,re,os 11 import cmd2,getpass,binascii,cx_Oracle,re,os
12 import sqlpyPlus 12 import sqlpyPlus
13 __version__ = '1.6.0' 13 __version__ = '1.6.1'
14 14
15 class sqlpython(cmd2.Cmd): 15 class sqlpython(cmd2.Cmd):
16 '''A python module to reproduce Oracle's command line with focus on customization and extention''' 16 '''A python module to reproduce Oracle's command line with focus on customization and extention'''
17 17
18 def __init__(self): 18 def __init__(self):