python3连接使用sqlite3

一直比较喜欢sqlite,业余爱好不需要大型数据库,原来在windows下最常用的就是access,使用很方便,但是linux下没法用,后来从php+sqlite2开始使用,编程时间很少,代码量很小所以不是很熟悉。现在又开始学python(汗一个先,我都不知道这是第几次开始了,^_^,没怎么能坚持,所以依然还是学基础),首选sqlite3.

在python中连接使用sqlite3非常方便,需要载入sqlite3模块就能使用了

import sqlite3
#建立连接
conn = sqlite3.connect('/tmp/example')

#建立了连接之后可以使用Cursor对象和execute方法执行sql命令
c = conn.cursor()
c.execute("""insert into user values ('3','qq','1234')""")
conn.commit()
rec = c.execute("""select * from user""")
print(c.fetchall())

python3对sqlite3的操作就依赖sqlite3模块,改模块的功能和常量有:

PARSE_DECLTYPES 

PARSE_COLNAMES

connect(database, [timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements])
register_converter(typename, callable)
register_adapter(type, callable)
complete_statement(sql)
enable_callback_tracebacks(flag)

Published by 阿飞 on
Tags: sqlite3, python3

暂无评论