Python包-sqlite3 发表于 2022-04-27 | 分类于 编程拾慧 , python SQLite是一种用C写的小巧的嵌入式数据库,它的数据库就是一个文件。SQLite 不需要一个单独的服务器进程或操作的系统,不需要配置,这意味着不需要安装或管理,所有的维护都来自于SQLite 软件本身。 官方文档sqlite3 Documentation 123456789101112131415161718import sqlite3con = sqlite3.connect('example.db')cur = con.cursor()# Create tablecur.execute('''CREATE TABLE stocks (date text, trans text, symbol text, qty real, price real)''')# Insert a row of datacur.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)")# Save (commit) the changescon.commit()# We can also close the connection if we are done with it.# Just be sure any changes have been committed or they will be lost.con.close() -------------本文结束感谢您的阅读-------------