Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: bde44876de7a12838a3e83735b1f5d88380d3877 authored by Barry Warsaw on 18 October 2009, 16:50:06 UTC
Bump to 2.6.4rc2
Tip revision: bde4487
complete_statement.py
# A minimal SQLite shell for experiments

import sqlite3

con = sqlite3.connect(":memory:")
con.isolation_level = None
cur = con.cursor()

buffer = ""

print "Enter your SQL commands to execute in sqlite3."
print "Enter a blank line to exit."

while True:
    line = raw_input()
    if line == "":
        break
    buffer += line
    if sqlite3.complete_statement(buffer):
        try:
            buffer = buffer.strip()
            cur.execute(buffer)

            if buffer.lstrip().upper().startswith("SELECT"):
                print cur.fetchall()
        except sqlite3.Error, e:
            print "An error occurred:", e.args[0]
        buffer = ""

con.close()
back to top