当前位置:Gxlcms > 数据库问题 > sqlite 创建、插入、查询

sqlite 创建、插入、查询

时间:2021-07-01 10:21:17 帮助过:34人阅读

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‘)

sqlite 创建、插入、查询

标签:sql   except   append   cursor   exce   ble   pre   time   key   

人气教程排行