python sqlite1

时间:2014-07-16 19:59:59   收藏:0   阅读:220
#-*- coding:UTF-8 -*-
# 导入SQLite驱动:
import sqlite3
# 连接到SQLite数据库
# 数据库文件是test.db
# 如果文件不存在,会自动在当前目录创建:
conn = sqlite3.connect(test.db)
# 创建一个Cursor:
cursor = conn.cursor()
# 执行一条SQL语句,创建user表:
cursor.execute(create table user (id varchar(20) primary key, name varchar(20)))
#<sqlite3.Cursor object at 0x10f8aa260>
# 继续执行一条SQL语句,插入一条记录:
cursor.execute(insert into user (id, name) values (\‘1\‘, \‘Michael\‘))
#<sqlite3.Cursor object at 0x10f8aa260>
# 通过rowcount获得插入的行数:
cursor.rowcount
#1
# 关闭Cursor:
cursor.close()
conn.close()

 

python sqlite1,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!