Python連線MySQL資料庫

2021-09-09 01:26:15 字數 1123 閱讀 8640

連線mysql資料庫

原始碼:import mysqldb #匯入mysqldb模組

print '連線資料庫'

#連線mysql資料庫 connect the database

#host處如果填寫'localhost',報錯的話,請嘗試使用'127.0.0.1'

db=mysqldb.connect(host='127.0.0.1',user='root',passwd='michael',db='test')

#獲取資料庫游標 get the database cursor

cur=db.cursor()

#執行sql語句 execute the sql

r=cur.execute('select * from people')

#獲取查詢結果 get all the results selected

r=cur.fetchall()

#輸出查詢結果

print '輸出資料庫查詢結果:'

print r

#關閉游標 close the cursor

cur.close()

#關閉資料庫連線 close the database connection

附:python中raw_input與input的區別

raw_input獲取使用者輸入之後的返回結果是乙個字串型別資料

獲取使用者輸入,轉化為字串型別,然後返回

(此圖來自文件 python-2.7.6)

input獲取使用者輸入之後的返回值是乙個數值型的資料

等價於eval(raw_input(提示資訊))

(此圖來自文件 python-2.7.6)

python連線MySQL資料庫

模組功能 connect 方法 connect 方法用於連線 資料庫,返回乙個資料庫連線物件。如果要連線乙個位於host.remote.com伺服器上名為fourm的mysql資料庫,連線串可以這樣寫 db mysqldb.connect host remote.com user user pass...

python連線mysql資料庫

看自己的機器有沒有python root localhost zn python v 會進入python pythontest。py檔案內容 usr bin python imoprt mysql module import mysqldb connect to the database db my...

python連線mysql資料庫

1 python3.5 連線mysql資料庫需要安裝pymysql外掛程式 參考教程 import pymysql conn pymysql.connect host localhost port 3306,user root passwd rusky db mysql charset utf8 c...