PyMySQL 安装
原文地址: http://www.runoob.com/python3/python3-mysql.html
在使用 PyMySQL 之前,我们需要确保 PyMySQL 已安装。
PyMySQL 下载地址:https://github.com/PyMySQL/PyMySQL。
如果还未安装,我们可以使用以下命令安装最新版的 PyMySQL:
$ pip install PyMySQL
数据库连接:
import pymysql
conn = pymysql.connect(
host='192.168.68.189',
port = 3307,
user='db_hbg',
passwd='hebaoguo',
db ='hdtrade',
)
cur = conn.cursor()
#获得表中有多少条数据
aa=cur.execute("select * from hd_position_operator ")
print(aa)
#打印表中的多少数据
info = cur.fetchmany(aa)
for ii in info:
print(ii)
cur.close()
conn.commit()
conn.close()