Python 3.3 Mysql 连接器[重复]

问题描述 投票:0回答:2

可能重复:
Python 3.0 的 MySQL-db 库?

我使用python3.3,无法连接到MySQL,因为我没有找到MySQL连接器的模块。

如何使用python3.3连接MySQL?

python
2个回答
19
投票

有一个名为 Pymysql 的模块,您可能会喜欢:

"""This pure Python MySQL client provides a DB-API to a MySQL database by talking directly to the server via the binary client/server protocol."""

import pymysql
conn = pymysql.connect(host='127.0.0.1', unix_socket='/tmp/mysql.sock', user='root', passwd=None, db='mysql')
cur = conn.cursor()
cur.execute("SELECT Host,User FROM user")
for response in cur:
    print(response)
cur.close()
conn.close()

9
投票

据我所知,没有人将

mysql
的 C 扩展模块移植到 Python 3,但至少有两个纯 Python 模块可以与 Python 3(以及 PyPy 等)一起正常工作:

快速谷歌搜索python3 mysql会发现更多(以及指向这两个项目的各种指针,包括之前提出完全相同问题的SO问题)。

© www.soinside.com 2019 - 2024. All rights reserved.