之前一直使用pythond mysqldb链接数据库,随着mysql被oracle收购之后,我发现mysqldb就不怎么更新了。
现在开始使用oracle提供的mysql.connector来操作mysql。
下载mysql.connector地址: https://dev.mysql.com/downloads/connector/python/
《MySQL Connector/Python Developer Guide》的地址:
https://dev.mysql.com/doc/connector-python/en/
安装地址: https://dev.mysql.com/doc/connector-python/en/connector-python-installation.html
mysql 的社区版下载地址: https://dev.mysql.com/downloads/mysql/
安装 mysql 的文档地址:
- Windows:https://dev.mysql.com/doc/refman/5.7/en/mysql-installer-setup.html
- Linux:https://dev.mysql.com/doc/refman/5.7/en/linux-installation.html
- Mac:https://dev.mysql.com/doc/refman/5.7/en/osx-installation.html
好用的 MySQL 的 SQL 开发工具(建模、执行 SQL、分析 SQL):MySQL Workbench
下载地址: https://dev.mysql.com/downloads/workbench/
举例:
#encoding=utf-8 ''' Created on 2017-8-12 @author: kanpiaoxue ''' import mysql.connector if __name__ == '__main__': config={'host':'127.0.0.1',#默认127.0.0.1 'user':'root', 'password':'hao123', 'port':3306 ,#默认即为3306 'database':'learn', 'charset':'utf8'#默认即为utf8 } conn=mysql.connector.connect(**config) #连接数据库 cursor=conn.cursor() cursor.execute('select * from person') #表查询 for (id,name,birthday) in cursor: print id,name,birthday cursor.close() conn.close()
这里仅仅是抛砖引玉,居然使用方法请参考官网的文档。
相关推荐
MySQL Connector/Python遵循Python的DBAPI(PEP 249)规范,这是一个Python数据库应用编程接口,使得不同数据库适配器有了一致的使用方式。它支持Python 2.x和3.x版本,并且提供了全面的功能,包括连接管理、事务...
基于mysql.connector的数据库工具类,自行按业务修改啊
首先,我们需要安装Python的MySQL连接器,通常使用`mysql-connector-python`库。这个库允许Python程序与MySQL服务器进行通信。你可以通过pip来安装: ```bash pip install mysql-connector-python ``` 安装完成后...
MySQL Connector/Python是MySQL数据库的一款Python适配器,它提供了Python程序与MySQL数据库之间的连接功能。这个库使得Python开发者能够方便地使用Python语言操作MySQL数据库,执行SQL查询,管理数据库对象,以及...
总的来说,Django与MySQL的结合使用,借助MySQL-python(或pymysql)库,可以实现强大的Web应用和数据库管理功能。开发者可以根据项目需求灵活选择数据库系统,并利用Python的便利性进行高效开发。在Linux环境中,...
首先,我们需要导入`mysql.connector`模块,并使用`connect()`函数创建一个数据库连接: ```python import mysql.connector cnx = mysql.connector.connect(user='your_username', password='your_password', ...
mysql-connector-python-8.0.19-windows-x86-64bit,官网下载无改动。 MD5: 24551d3720abe8320cffd9d9c59f265c
一旦安装成功,你就可以在Python代码中导入`mysql.connector`模块,创建数据库连接,建立游标,执行SQL命令,如: ```python import mysql.connector cnx = mysql.connector.connect(user='your_username', ...
mysql-connector-python-2.1.6.zip, 解压后cd到安装目录,python setup.py install 即可, python命令行下 import mysql.connector 检验是否安装成功
MySQL Connector/Python是MySQL数据库的一款Python适配器,它允许Python开发者使用Python语言与MySQL数据库进行交互。这个压缩包“mysql-connector-python-2.1.3.zip”包含的是MySQL Connector/Python的2.1.3版本,...
安装完成后,你可以通过导入`mysql.connector`模块来开始你的数据库操作。例如: ```python import mysql.connector cnx = mysql.connector.connect(user='your_username', password='your_password', host='your...
1. **Python MySQL Connector**:MySQL-python,也称为MySQLdb,是Python中广泛使用的MySQL数据库适配器。它实现了Python DB-API 2.0规范,使得在Python中编写SQL查询和处理数据库结果变得简单。 2. **版本信息**:...
首先,Python链接MySQL数据库通常使用的是`pymysql`或`mysql-connector-python`这两个库。其中,`pymysql`是Python社区中广泛推荐的非官方MySQL驱动,它提供了类似Python DB-API的接口。而`mysql-connector-python`...
connection = mysql.connector.connect(host='localhost', database='database_name', user='user', password='password') if connection.is_connected(): db_Info = connection.get_server_info() print(...
cnx = mysql.connector.connect(user='your_username', password='your_password', host='localhost', database='your_database') cursor = cnx.cursor() ``` 在建立连接后,我们可以使用`cursor.execute()`方法...
cnx = mysql.connector.connect(user='username', password='password', host='localhost', database='database_name') ``` 3. 创建游标: ```python cursor = cnx.cursor() ``` 4. 执行SQL和处理结果: 其余步骤与...
用户可以进一步尝试创建连接,例如`conn = mysql.connector.connect(user='username', password='password', host='localhost', database='testdb')`,以确保连接功能正常。 5. **主要功能**:MySQL Connector/...
mysql-connector-python-8.0.30-windows-x86-64bit.msi