摘要:
摘自python帮助文档一、基本用法import sqlite3conn = sqlite3.connect('example.db')#conn = sqlite3.connect(':memory:')c = conn.cursor()c.execute('''CREATE TABLE stocks (date text, trans text, symbol text, qty real, price real)''')#NULL,INTEGER,REAL,TEXT,BLOBc.execute("I 阅读全文
posted @ 2013-12-08 23:25
perel
阅读(403)
评论(0)
推荐(0)
浙公网安备 33010602011771号