Python學習筆記-pyMySQL連接MySQL數據庫

下載pyMySQL模塊包

[root@kurol ~]# python36 -m pip install pyMySQL
Collecting pyMySQL
  Downloading PyMySQL-0.7.11-py2.py3-none-any.whl (78kB)
    100% |################################| 81kB 8.9kB/s 
Installing collected packages: pyMySQL
Successfully installed pyMySQL-0.7.11

創建py文件

[root@kurol ~]#touch mysqltest.py
[root@kurol ~]#vim mysqltest.py
#!/usr/bin/python36
# -*- coding: UTF-8 -*-
#
import os,sys
import pymysql
try:
    conn = pymysql.connect(host='localhost',user='root',passwd='',db='db_student')
except Exception as e:
    print (e) 
    sys.exit()
cursor = conn.cursor()
sql = "select * from stu_inf"
cursor.execute(sql)
data = cursor.fetchall()
if data:
    for x in data:
    print (x[0],x[1],x[2],x[3],x[4],x[5])
cursor.close()
conn.close()


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章