首页 > 代码库 > Python MySQL的基本使用

Python MySQL的基本使用

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的基本使用