pymsql基本用法

#!/usr/bin/env python # --coding = utf-8 # Author Allen Lee import pymysql #建立連接對象 conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='root', db='test') #建立遊標 cursor = conn.cursor
相關文章
相關標籤/搜索