python mysql简单的增删改查
程序员文章站
2022-03-03 17:41:48
...
import pymysql
#打开数据库连接
db=pymysql.Connect(host="*",port=3306,user="*",password="123456",db="mysqltest",charset="utf8")
#创建游标对象
cursor=db.cursor()
#需要执行的SQL语句
# sql="""create table student(
# id int not null,
# name varchar(20),
# age int
# )"""
#创建表
# sql="""insert into student(id,name,age)
# values(1,"zhangsan",12)
# """
#查询
#sql="select * from student"
#更新
#sql="update student set age=age+1"
#删除
sql="delete from student where name='zhangsan'"
#执行语句
cursor.execute(sql)
#查询一个
#data1=cursor.fetchone()
##查询所有
#data2=cursor.fetchall()
#提交语句
db.commit()
db.close()
#print(data2)
#print(type(data2))
上一篇: XML的文档类型定义文件——DTD
下一篇: XML 文档的验证 DTD XSD