Python 2.x 上连接MySQL的库倒是不少的,其中比较著名就是MySQLdb(Django项目都使用它;我也在开发测试系统时也使用过),见:http://sourceforge.net/projects/mysql-python/

不过,目前MySQLdb并不支持python3.x,网上找了一些方法,后来我还是偶然发现MySQL官方已经提供了MySQL连接器,而且已经有支持Python3.x的版本了。MySQL Connector/Python, a self-contained Python driver for communicating with MySQL servers. 这个用起来还是感觉比较顺手的。
关于MySQL Connector/Python的各种介绍、安装、API等文档,还是参考官网吧:http://dev.mysql.com/doc/connector-python/en/index.html
(注意:安装程序将关于MySQL Connnector的python2的源文件复制到了python3库的位置(运行时会报语法错误),我就直接手动复制了其中python3/目录下的文件过去就解决。)

另外,Python3.x连接MySQL的其他方案有:oursql, PyMySQL, myconnpy 等,参考如下链接:

http://packages.python.org/oursql/

https://github.com/petehunt/PyMySQL/

https://launchpad.net/myconnpy

下面只是贴一个试用 MySQL Connector/Python 的Python脚本吧(包括创建表、插入数据、从文件读取并插入数据、查询数据等):

 PYTHON

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/python3
# a sample to use mysql-connector for python3
# see details from http://dev.mysql.com/doc/connector-python/en/index.html
 
import mysql.connector
import sys, os
 
user = 'root'
pwd = '123456'
host = '127.0.0.1'
db = 'test'
 
data_file = 'mysql-test.dat'
 
create_table_sql = "CREATE TABLE IF NOT EXISTS mytable ( \
id int(10) AUTO_INCREMENT PRIMARY KEY, \
name varchar(20), age int(4) ) \
CHARACTER SET utf8"
 
insert_sql = "INSERT INTO mytable(name, age) VALUES ('Jay', 22 ), ('杰', 26)"
select_sql = "SELECT id, name, age FROM mytable"
 
cnx = mysql.connector.connect(user=user, password=pwd, host=host, database=db)
cursor = cnx.cursor()
 
try:
cursor.execute(create_table_sql)
except mysql.connector.Error as err:
print("create table 'mytable' failed.")
print("Error: {}".format(err.msg))
sys.exit()
 
try:
cursor.execute(insert_sql)
except mysql.connector.Error as err:
print("insert table 'mytable' failed.")
print("Error: {}".format(err.msg))
sys.exit()
 
if os.path.exists(data_file):
myfile = open(data_file)
lines = myfile.readlines()
myfile.close()
 
for line in lines:
myset = line.split()
sql = "INSERT INTO mytable (name, age) VALUES ('{}', {})".format(myset[0], myset[1])
try:
cursor.execute(sql)
except mysql.connector.Error as err:
print("insert table 'mytable' from file 'mysql-test.dat' -- failed.")
print("Error: {}".format(err.msg))
sys.exit()
 
try:
cursor.execute(select_sql)
for (id, name, age) in cursor:
print("ID:{} Name:{} Age:{}".format(id, name, age))
except mysql.connector.Error as err:
print("query table 'mytable' failed.")
print("Error: {}".format(err.msg))
sys.exit()
 
cnx.commit()
cursor.close()
cnx.close()

另外,最后再贴一个使用MySQLdb的python2.x代码示例吧:

 PYTHON

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python2.7
# coding=utf-8
 
import MySQLdb
import sys
 
host = 'localhost'
user = 'root'
pwd = '123456' # to be modified.
db = 'test'
 
 
if __name__ == '__main__':
conn = MySQLdb.connect(host, user, pwd, db, charset='utf8');
try:
conn.ping()
except:
print 'failed to connect MySQL.'
sql = 'select * from mytable where id = 2'
cur = conn.cursor()
cur.execute(sql)
row = cur.fetchone()
# print type(row)
for i in row:
print i
cur.close()
conn.close()
sys.exit()
 

最新文章

  1. Struts 2之动态方法调用,不会的赶紧来
  2. paip.花生壳 服务启动失败 以及不能安装服务,权限失败的解决
  3. ubuntu系统从中文环境改成英文环境
  4. windows下面go语言环境搭建
  5. 【SpringMVC】SpringMVC系列14之SpringMVC国际化
  6. LeetCode Combinations (DFS)
  7. ruby学习--block
  8. windows下配置环境变量时,在cmd窗口执行配置的命令时无效的原因
  9. spark-shell 执行脚本并传入参数
  10. 如何使用json在前后台进行数据传输
  11. FileUtils.copyDirectory without .SVN
  12. Protel99se轻松入门:特殊技巧和高级设置(一)
  13. js中访问对象的方法
  14. STM32的外部中断配置及使用
  15. Spring Boot 注解的使用
  16. UWP 手绘视频创作工具技术分享系列 - Ink & Surface Dial
  17. eclipse中如何同期化
  18. RedHat/Fedora/Centos 下bash 自动补全命令
  19. codeforces-1132 (div2)
  20. mongodb怎么创建数据库和配置用户

热门文章

  1. java IO的字节流和字符流及其区别
  2. js实景题
  3. Charles 和 ProxyDroid 抓取Websocket
  4. openstack token
  5. 天猫首页迷思之-jquery实现左侧广告牌图片轮播
  6. servlet多线程同步问题
  7. Nginx配置文件分析
  8. 洛谷——P1579 哥德巴赫猜想(升级版)
  9. ASP.NET基础题(1-10)
  10. TCP/IP,HTTP,SOAP等协议之区别