sqlite 创建插入查询
Posted llllllllll
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlite 创建插入查询相关的知识,希望对你有一定的参考价值。
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 创建插入查询的主要内容,如果未能解决你的问题,请参考以下文章
SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML