#!/usr/bin/python
import sqlite3
#创建表
def create_table(conn):
c = conn.cursor()
sql = 'create table company(' \
'id int primary key not null,' \
'name text not null,' \
'age int not null,' \
'address char(50),' \
'salary real' \
');'
c.execute(sql)
print("table create successful!")
conn.commit()
conn.close()
#增加
def add_data(conn):
c = conn.cursor()
sql = "insert into company(id,name,age,address,salary) " \
"values(?,?,?,?,?)"
params = [5,'nick002',25,'南阳',400]
c.execute(sql, params)
conn.commit()
#修改
def modify_data(conn):
c = conn.cursor()
sql = "update company set name=? where id=?"
params = ['nick', 5]
c.execute(sql, params)
conn.commit()
#删除
def del_data(conn):
c = conn.cursor(
python操作sqllite实现增删改查
最新推荐文章于 2024-06-17 20:46:13 发布
本文详细介绍了如何使用Python连接SQLite数据库,并通过具体示例展示了如何执行基本的增、删、改、查操作,包括创建表格、插入数据、更新记录以及删除数据,适合初学者学习。
摘要由CSDN通过智能技术生成