sqlite 创建、插入、查询

时间:2020-04-14 19:24:59   收藏:0   阅读:64

sqlite 创建、插入、查询

import sqlite3, time
db_pwd="C:\\data"
connect = sqlite3.connect(db_pwd)
cursor = connect.cursor()
try:
	sql = ‘‘‘
	create table test(
		[id]        integer PRIMARY KEY autoincrement,
		[uname]     varchar(100),
		[title]     NONE,
		[timestamp] DATETIME(50),
		[url]     NONE
		);
	‘‘‘
	cursor.execute(sql)
except Exception as e:
	if e == "table test already exists":
		pass

text = [1,2,3]
text.append(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
sql = ‘‘‘insert into test (uname, title, timestamp, url) VALUES (?,?,?,?)‘‘‘
cursor.execute(sql,text)
connect.commit()

sql = ‘‘‘select * from test‘‘‘
for _ in cursor.execute(sql):
	print(_)
connect.close()

打印结果

<sqlite3.Cursor object at 0x00000000022D1E30>
(1, ‘1‘, 2, 3, ‘2020-04-14 17:49:38‘)

原文:https://www.cnblogs.com/BenLam/p/12699702.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!