01.Win10 系统下python3.4连接mysql数据库

win 10

 Python 3.4

 mysql 5.6.26

一、下载Python

到python官方网站下载最新python程序。根据系统有32,64位。

直接下一步,就可以安装成功。

https://www.python.org/downloads/windows/

二、安装好zendstudio 

三、安装 ez_setup.py

 https://bootstrap.pypa.io/ez_setup.py

  下载此文件后操作如下:

C:\Python34\PyMySQLtools>python ez_setup.py


C:\Python34>easy_install.exe pymysql3


四、连接mysql

python程序内容如下:import pymysql

conn = pymysql.connect(user='root', passwd='root',

                 host='localhost', db='zjctest')

cur = conn.cursor()

cur.execute("SELECT * FROM zjc")

for r in cur:      

      print("row_number:" , (cur.rownumber) )        

      print("id:"+str(r[0])+"name:"+str(r[1])+"age:"+str(r[2])) 

cur.close()    

conn.close()






你可能感兴趣的:(01.Win10 系统下python3.4连接mysql数据库)