1. 程式人生 > >python: mysql資料庫連線

python: mysql資料庫連線

mysql資料庫連線

import pymysql
#1. 先連線到資料庫
dblink = pymysql.Connect (host = '47.98.173.29',
    user = 'root',
    passwd = '123456',
    db = 'practice',
    port = 3306,
    charset = 'utf8')
#3. 獲取遊標
get_cursor = dblink.cursor()
#4. 執行sql
order = 'select stuname, stubirth from tbstudent;'
get_cursor.execute(order)
#5. 獲取結果
data = get_cursor.fetchall() #6.獲取一個結果 # data = cursor.fetchone() for i in data: print(i) #2.關閉連線 dblink.close()