Python 使用SQLite数据库

1. Sqlite3模块 - 不需要单独的服务器

sqlite3 模块由 Gerhard Häring 编写。 要使用该模块,您必须首先创建一个 Connection 对象连接数据库。 这里数据将存储在 PrintAndersonLaser.db 文件中:

import sqlite3

conn = sqlite3.connect('PrintAndLaser.db')

创建数据表,增加数据到数据表:

c.execute('''CREATE TABLE Stocks

    (date text, trans text, qty real, price real)''')

c.execute("INSERT INTO Stocks VALUES('2022-07-25', 'Buy', 100, 88.3)")

conn.commit()

conn.close()

2. 查询数据表中的数据

import sqlite3

conn = sqlite3.connect('PrintAndLaser.db')

c = conn.cursor()

c.execute("SELECT * FROM Stocks ")

for rin c:

print(r)

conn.close()

输出:

('2022-07-25', 'Buy', 100.0, 88.3)

读取一条数据:c.fetchone()

读取表中的所有数据:all = c.fetchone()

版权声明:
作者:dingding
链接:https://www.techfm.club/p/42354.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>