python語言的易用性不言而喻,使用python訪問資料庫也及其方便。簡單給出乙個示例程式。
在使用connect函式連線資料庫時,需要給出資料庫的相關連線方式,比如位址(host),埠(port),使用者名稱(user)、密碼(passwd),以及資料庫的名稱(db)。
# -*- coding: utf-8 -*-
import sys
import mysqldb
reload(sys)
sys.setdefaultencoding('utf-8')
def access_db():
conn = mysqldb.connect(host='',port=,user='',passwd='',charset='utf8',db='')
cur=conn.cursor()
try:
sql = 'select col_name from table_name;'
cur.execute(sql)
conn.commit()
rows = cur.fetchall()
for x in rows:
print x
except exception, e:
print e
conn.commit()
cur.close()
conn.close()
if __name__ == "__main__":
access_db()
python Mysql 資料連線
下面這個位址只有32位的 64位還需求其他位址 資料庫鏈結 import mysqldb conn mysqldb.connect host 127.0.0.1 port 3306,user root passwd root db test charset utf8 print conn 鏈結成功列...
python mysql 資料繫結插入資料
import pymysql 開啟資料庫連線,不指定資料庫 conn pymysql.connect localhost zsq 123456 選擇資料庫 conn.select db spider 獲取游標 cur conn.cursor 資料繫結插入一條資料的方式 sql insert into...
Python Mysql 資料庫操作
使用python 進行資料庫的操作 為了能運算元據庫,首先我們要有乙個資料庫,所以要首先安裝mysql,然後建立乙個測試資料庫python test用以後面的測試使用 create database python test charset utf8import mysqldbcon mysqldb....