python3 驱动 PyMySQL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 驱动 PyMySQL相关的知识,希望对你有一定的参考价值。
Python版本: 3.5.0
MySqlDB官网只支持Python3.4, 使用第三方库PyMysql连接Mysql数据库。
https://pypi.python.org/pypi/PyMySQL#downloads
import pymysql
# change root password to yours:
conn = pymysql.connect(host=‘localhost‘, port=3306,user=‘root‘,passwd=‘123456‘,db=‘world‘,charset=‘UTF8‘)
cursor = conn.cursor()
=================================================================================
python 3.4以下使用mysql 提供驱动
http://dev.mysql.com/downloads/connector/python/2.0.html
# install mysql-connector-python:
# pip3 install mysql-connector-python --allow-external mysql-connector-python
IMPORT mysql.connector
# change root password to yours:
conn = mysql.connector.connect(USER=‘root‘, PASSWORD=‘password‘, DATABASE=‘test‘)
以上是关于python3 驱动 PyMySQL的主要内容,如果未能解决你的问题,请参考以下文章
基于Python3.6使用Django框架连接mysql数据库的驱动模块安装解决办法
python3.4怎么连接mysql pymysql连接mysql数据库