PYTHON3连接MYSQL数据库

http://smilejay.com/2013/03/python3-mysql-connector/

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脚本吧(包括创建表、插入数据、从文件读取并插入数据、查询数据等):

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()

时间: 2024-10-12 17:23:45

PYTHON3连接MYSQL数据库的相关文章

python3连接MySQL数据库实例

#python3连接MySQL实例 import pymysql """导入连接MySQL需要的包,没有安装pymysql需要先安装 使用命令行切换到python的安装路径下的scripts子目录下安装(pip install pymysql) """ #连接MySQL数据库 db = pymysql.connect("localhost","root","123456","p

Python3 连接Mysql数据库

初学Python ,目前无论是电子书还是网上的教程,都是针对于python2.7,但是对于部分语法以及模块都有变化. 比如 urllib2是python自带的模块,不需要下载. urllib2在python3.x中被改为urllib.request Python 2.x中连接MySQL比较常用的就是MySQLdb.网上大量教程也都在使用这个模块(我也通过pip install MySQLdb安装一直都不成功). 目前MySQLdb不支持python3.x.可以使用MySQL connnecter

python3.4怎么连接mysql pymysql连接mysql数据库

本文介绍了python3 4连接mysql数据库的方法,在python3 4中使用原来python2 7的mysqldb已不能连接mysql数据库了,可以使用pymysql. 在python3.4中使用原来python2.7的mysqldb已不能连接mysql数据库了,可以使用pymysql,来完成连接mysql的重任. 具体步骤: 序号 描述1 去github上下载pymysql的安装包pymysql https://github.com/PyMySQL/PyMySQL2 解压到某个盘符下3 

python3.4连接mysql数据库的方法

python3.4连接mysql数据库的方法 发布时间:2014-08-04编辑:www.jbxue.com 本文介绍了python3.4连接mysql数据库的方法,在python3.4中不能用mysqldb连接mysql,可以使用pymysql完成连接mysql数据库,需要的朋友参考下. 在python3.4中用原来python2.7的mysqldb已不能连接mysql数据库了. 喜欢mysqldb的朋友,可以参考: Python实例 mysqldb操作数据库 python MySQLdb操作

如何使用Python3连接MySQL

网上推荐的Python操作数据库的方法是调用 MySQL for Python,也有人称之为MySQLdb,原因是这个是C写的,速度快. ubuntu下用pip安装第三方库.                sudo pip install mysql-python 但在python3里面,使用原来python2.7的mysqldb已经不能连接mysql数据库了. 有达人已经提供了一个全Python写的Mysql第三方库   pymysql.  PyMySQL的使用方法和MySQLdb几乎一样,如

Python3链接MySQL数据库

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 Pyt

第七篇:Python3连接MySQL

第七篇:Python3连接MySQL 连接数据库 注意事项 在进行本文以下内容之前需要注意: 你有一个MySQL数据库,并且已经启动. 你有可以连接该数据库的用户名和密码 你有一个有权限操作的database 基本使用 # 导入pymysql模块 import pymysql # 连接database conn = pymysql.connect(host="你的数据库地址", user="用户名",password="密码",database=

Python连接MySQL数据库之pymysql模块使用

Python连接MySQL数据库之pymysql模块使用 Python3连接MySQL PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库,Python2中则使用mysqldb. Django中也可以使用PyMySQL连接MySQL数据库. PyMySQL安装 pip install pymysql 连接数据库 注意事项 在进行本文以下内容之前需要注意: 你有一个MySQL数据库,并且已经启动. 你有可以连接该数据库的用户名和密码 你有一个有权限操作的datab

python连接mysql数据库——版本问题

今天终于解决了使用python连接数据库不成功的问题,现将过程总结如下: 一.出现的问题 在使用python连接mysql数据库是一直出现如下问题: 1.只能连接到我数据库中的的第一个数据库,但是不能操作里面的表,会报错表不存在.(表是存在的)2.更换其他数据库后,直接报错找不到该数据库.(数据库和表均存在) 运行连接数据库的代码,会出现: conn = pymysql.connect(user='root', password='password', database='XXX') Trace