sqlite create, insert, query

sqlite create, insert, query

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

Print result

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

Guess you like

Origin www.cnblogs.com/BenLam/p/12699702.html