python連接mysql數據庫

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python連接mysql數據庫相关的知识,希望对你有一定的参考价值。

第一步,安裝mysql數據庫。

這裏我安裝的是mariadb數據庫,版本5.5,並且配置好了字符集。此處不詳細敘述,相信大家沒有問題。

第二步,安裝mysql驅動。

首先說明一下有兩個主要的驅動:

mysql-connector-python:是MySQL官方的纯Python驱动;

MySQL-python:是封装了MySQL C驱动的Python驱动。

我一直都喜歡官方出品的東西,質量有保障嘛。

接下來安裝mysql-connector-python:

一開始打算使用命令安裝

pip install mysql-connector-python --allow-external mysql-connector-python

結果報錯沒有找到版本,後來發現pypi上該驅動的倉庫已經空了,只有一條指向mysql官方的下載連接,無奈只好手動下載安裝。

在pypi的倉庫中搜索,我得到的版本是2.0.4。

下載mysql-connector-python-2.0.4.zip

unzip mysql-connector-python-2.0.4.zip

cd mysql-connector-python-2.0.4

python setup.py install

第三步:使用python連接數據庫

# 导入MySQL驱动:

>>> import mysql.connector

# 注意把password设为你的root口令:

>>> conn = mysql.connector.connect(user=‘root‘, password=‘password‘, database=‘test‘)

>>> cursor = conn.cursor()

# 创建user表:

>>> cursor.execute(‘create table user (id varchar(20) primary key, name varchar(20))‘)

# 插入一行记录,注意MySQL的占位符是%s:

>>> cursor.execute(‘insert into user (id, name) values (%s, %s)‘, [‘1‘, ‘Michael‘])

>>> cursor.rowcount

1

# 提交事务:

>>> conn.commit()

>>> cursor.close()

# 运行查询:

>>> cursor = conn.cursor()

>>> cursor.execute(‘select * from user where id = %s‘, (‘1‘,))

>>> values = cursor.fetchall()

>>> values

[(‘1‘, ‘Michael‘)]

# 关闭Cursor和Connection:

>>> cursor.close()

True

>>> conn.close()

 

以上是关于python連接mysql數據庫的主要内容,如果未能解决你的问题,请参考以下文章

mybatis的增刪改查

mybatis的增刪改查

數據庫ORACLE轉MYSQL存儲過程遇到的坑~(總結)

如何使用實體關係圖 (ERD) 設計關係數據庫?

針對數據庫的數據的增刪改查的功能做接口

流暢的pyhton4---數據庫備份