Mercurial > sqlpython
comparison mysqlpy.py @ 143:24b5daa7ebe1
oops, put 1.4.8 in comments
author | catherine@Elli.myhome.westell.com |
---|---|
date | Thu, 04 Sep 2008 11:35:52 -0400 |
parents | 58d15cb69f72 |
children | 3b1e25cc0e38 |
comparison
equal
deleted
inserted
replaced
142:149aaa6f59c9 | 143:24b5daa7ebe1 |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # MySqlPy V1.4.6 | 2 # MySqlPy V1.4.8 |
3 # Author: Luca.Canali@cern.ch | 3 # Author: Luca.Canali@cern.ch |
4 # | 4 # |
5 # | 5 # |
6 # Companion of SqlPython, a python module that reproduces Oracle's command line within python | 6 # Companion of SqlPython, a python module that reproduces Oracle's command line within python |
7 # 'sqlplus inside python' | 7 # 'sqlplus inside python' |
11 from sqlpyPlus import * | 11 from sqlpyPlus import * |
12 import binascii, sys, tempfile | 12 import binascii, sys, tempfile |
13 | 13 |
14 class mysqlpy(sqlpyPlus): | 14 class mysqlpy(sqlpyPlus): |
15 ''' | 15 ''' |
16 MySqlPy V1.4.6 - 'sqlplus in python' | 16 MySqlPy V1.4.8 - 'sqlplus in python' |
17 Author: Luca.Canali@cern.ch | 17 Author: Luca.Canali@cern.ch |
18 Rev: 1.4.8, 29-May-08 | 18 Rev: 1.4.8, 04-Sep-08 |
19 | 19 |
20 Companion of SqlPython, a python module that reproduces Oracle's command line within python | 20 Companion of SqlPython, a python module that reproduces Oracle's command line within python |
21 and sqlpyPlus. Major contributions by Catherine Devlin, http://catherinedevlin.blogspot.com | 21 and sqlpyPlus. Major contributions by Catherine Devlin, http://catherinedevlin.blogspot.com |
22 | 22 |
23 Usage: sqlpython [connect string] [single-word command] ["multi-word command"]... | 23 Usage: sqlpython [connect string] [single-word command] ["multi-word command"]... |