本地Python连接服务器中的Mysql数据库

时间:2022-09-21 14:25:21

1、Python中安装mysql驱动

1.1、Python下安装mysql驱动:

pip installmysql-connector-python --allow-external mysql-connector-python

如果上面的命令安装失败,可以试试另一个驱动:

pip installmysql-connector

1.2、anaconda下安装mysql驱动:

conda installmysql-connector-python

 

2、连接到服务器端的mysql数据库

仅以查询数据库中某一数据表为例,

# 导入MySQL驱动
import mysql.connector
# 连接mysql,括号内是服务器地址, 端口号, 用户名,密码,存放数据的数据库
conn = mysql.connector.connect( host='#', port='#', user='#', password='#', database='#')
cursor = conn.cursor(buffered=True) # Locate the Cursor, all that was required was for buffered to be set to true
#获得表中有多少条数据
sqlcom="select * from china_sites_20140513" # SQL command
aa=cursor.execute(sqlcom) # Execute the command
print(aa)
#查询表中数据,并以每行一个元祖打印
rows = cursor.fetchall() #使用 fetchall 函数,将结果集(多维元组)存入 rows 里面
#依次遍历结果集,发现每个元素,就是表中的一条记录,用一个元组来显示
for a in rows:
print(a)