python 连接数据库

Posted dpqq

tags:

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

1.下载安装connector/python

地址:https://dev.mysql.com/downloads/connector/python/

下载的版本(mysql-connector-python-8.0.15-py3.5-windows-x86-64bit.msi)  下载后根据提示安装

 

2.数据库中数据

技术图片

 

3.使用python中的mysql.connector模块操作mysql

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
import mysql.connector                
 
# mysql1.py
config = {
    ‘host‘‘127.0.0.1‘,
    ‘user‘‘root‘,
    ‘password‘‘root‘,
    ‘port‘3306,
    ‘database‘‘test‘,
    ‘charset‘‘utf8‘
}
try:
    cnn = mysql.connector.connect(**config)
except mysql.connector.Error as e:
    print(‘connect fails!{}‘.format(e))
cursor = cnn.cursor()
try:
    sql_query = ‘select name,age from stu ;‘
    cursor.execute(sql_query)
    for name, age in cursor:
        print (name, age)
except mysql.connector.Error as e:
    print(‘query error!{}‘.format(e))
finally:
    cursor.close()
    cnn.close()

 

结果:

1
2
3
4
5
6
(u‘xiaoming‘10)
(u‘rose‘18)
(u‘jack‘19)
(u‘fang‘20)
(u‘Liang‘40)
(u‘Age‘None)

  

以上是关于python 连接数据库的主要内容,如果未能解决你的问题,请参考以下文章

这些角度电子邮件指令代码片段如何连接

错误:E/RecyclerView:未连接适配器;跳过片段上的布局

部分代码片段

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段