1. 程式人生 > >Python MySQL的基本使用

Python MySQL的基本使用

solid data 建立 .html 接口 clas targe int color

1. 安裝

MySQLdb是用於Python鏈接Mysql數據庫的接口,它實現了 Python 數據庫API規範V2.0,基於MySQL C API上建立的
其安裝方法如下

# yum install python-devel
# pip install MySQLClient

2. 基本使用

基本使用方法如下圖

技術分享

下面的代碼查詢test數據庫中user表中所有項

import MySQLdb
 
try:
    conn=MySQLdb.connect(host=localhost,user=root,passwd=root,db=test,port=3306)
    cur
=conn.cursor() cur.execute(select * from user)
    conn.commit()
    cur.close()
    conn.close()
except MySQLdb.Error,e:
     print "Mysql Error %d: %s" % (e.args[0], e.args[1])

參考:
<python操作mysql數據庫>
<Python操作MySQL數據庫>
<Python使用MySQL數據庫的方法以及一個實例>
<PEP 249 -- Python Database API Specification v2.0>

Python MySQL的基本使用