加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xwjmyql.py 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
打代码的小黄瓜 提交于 2024-04-15 09:16 . update xwjmyql.py.
import pymysql
# 使用参数名连接数据库
conn = pymysql.connect(host='192.168.18.13', port=33046, user='root', password='123456', db='xuweijie', charset='utf8')
# 创建游标
cursor = conn.cursor()
# cursor.execute("show databases")
sql = """create table if not exists movies (id int(10) primary key auto_increment, name varchar(128) not null, pic text, actor varchar(128), score varchar(128), detail_link text)"""
cursor.execute(sql)
cursor.execute("show tables")
print(cursor.fetchall())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化