Mysql 是使用最廣泛的開源資料庫之一。 Python 提供了連接到該資料庫並使用該資料庫儲存和檢索資料的方法。
根據您使用的 python 環境,pymysql 套件可以是使用下列方法之一安裝。
# From python console pip install pymysql #Using Anaconda conda install -c anaconda pymysql # Add modules using any python IDE pymysql
現在我們可以使用以下程式碼連接Mysql環境。連接後我們正在尋找資料庫的版本。
import pymysql # Open database connection db = pymysql.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # execute SQL query using execute() method. cursor.execute("SELECT VERSION()") # Fetch a single row using fetchone() method. data = cursor.fetchone() print ("Database version : %s " % data) # disconnect from server db.close()
執行上面的程式碼給我們以下結果-
Database version : 8.0.19
為了執行資料庫指令,我們建立一個資料庫遊標和一個要傳遞到該遊標的Sql 查詢。然後我們使用cursor.execute方法來取得遊標執行的結果。
import pymysql # Open database connection db = pymysql.connect("localhost","username","paswd","DBname" ) # prepare a cursor object using cursor() method cursor = db.cursor() sql = "SELECT * FROM EMPLOYEE \ WHERE INCOME > '%d'" % (1000) try: # Execute the SQL command cursor.execute(sql) # Fetch all the rows in a list of lists. results = cursor.fetchall() for row in results: fname = row[0] lname = row[1] age = row[2] sex = row[3] income = row[4] # Now print fetched result print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" % \ (fname, lname, age, sex, income ) except: print "Error: unable to fecth data" # disconnect from server db.close()
執行上面的程式碼給我們以下結果 -
fname = Jack, lname = Ma, age = 31, sex = M, income = 12000
以上是Python 中的 MySqldb 連接的詳細內容。更多資訊請關注PHP中文網其他相關文章!