/usr/share/pyshared/axiom/scripts/pysql.py is in python-axiom 0.7.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import sys
import readline # Imported for its side-effects
import traceback
from pprint import pprint
from axiom._pysqlite2 import Connection
con = Connection.fromDatabaseName(sys.argv[1])
cur = con.cursor()
while True:
try:
cur.execute(raw_input("SQL> "))
results = list(cur)
if results:
pprint(results)
except:
traceback.print_exc()
|