pycharm python连接数据库操作

python 连接数据库操作

import pymysql

# db=pymysql.connect("localhost","root","root","test") #链接数据库

db=pymysql.connect(host='localhost',user='root',password='root',db='test')


cursor=db.cursor() #创建一个游标对象

cursor.execute("select * from log where id ='12'")  #执行sql语句


data=cursor.fetchall()   #查询所有数据

print(data)  #打印执行sql之后的数据

cursor.close()
# 关闭数据库连接
posted @ 2021-11-15 09:42  赏金猎人小熊  阅读(138)  评论(0编辑  收藏  举报