标签:数据库 语句 .exe upd har mys .com sele 模块
1、安装pymysql模块
pip install pymysql
2、代码如下
import pymysql # 1、连上数据库 账号、密码 ip 端口号 数据库 # 2、建立游标 # 3、执行sql # 4、获取结果 # 5、关闭游标 # 6、连接关闭 coon = pymysql.connect( host=‘xxx.xxx.xxx.xxx‘,user=‘xxx‘,passwd=‘123456‘, port=3306,db=‘xxx‘,charset=‘utf8‘ #port必须写int类型, #charset这里必须写utf8 ) cur = coon.cursor() # 建立游标 # cur.execute(‘select * from stu;‘) # 执行sql语句 cur.execute(‘insert into stu (id,name,sex) VALUE (1,"小米","女");‘) # delete update insert coon.commit() # 必须得coomit res = cur.fetchall() # 获取所有返回的结果 print(res) cur.close() # 关闭游标 coon.close() # 关闭连接
标签:数据库 语句 .exe upd har mys .com sele 模块
原文地址:https://www.cnblogs.com/jyd1993/p/9075955.html