最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Python中MySQLConnector模块使用方法详解
时间:2022-11-14 23:00:32 编辑:袖梨 来源:一聚教程网
相较于MySQLdb模块来说,其支持python3,而MySQLdb目前只支持到python2.7版本。这里就结合示例,总结下MySQL Connector模块的用法。
1、数据库连接
连接数据库的代码如下
| 代码如下 | 复制代码 |
| import mysql.connector config={'host':'127.0.0.1',#默认127.0.0.1 'user':'root', 'password':'123456', 'port':3306 ,#默认即为3306 'database':'test', 'charset':'utf8'#默认即为utf8 } try: cnn=mysql.connector.connect(**config) except mysql.connector.Error as e: print('connect fails!{}'.format(e)) |
|
连接方法上和MySQLdb模块略有不同。MySQLdb使用的是=号,这里使用的是 : 号。
2、创建表
下面我们根据上面新建的一个数据库连接创建一张名为student的表:
| 代码如下 | 复制代码 |
| sql_create_table='CREATE TABLE `student` \ (`id` int(10) NOT NULL AUTO_INCREMENT,\ `name` varchar(10) DEFAULT NULL,\ `age` int(3) DEFAULT NULL,\ PRIMARY KEY (`id`)) \ ENGINE=MyISAM DEFAULT CHARSET=utf8' cursor=cnn.cursor() try: cursor.execute(sql_create_table) except mysql.connector.Error as e: print('create table orange fails!{}'.format(e)) |
|
3、插入数据
插入数据的语法上和MySQLdb上基本上是一样的:
| 代码如下 | 复制代码 |
| cursor=cnn.cursor() try: '第一种:直接字符串插入方式' sql_insert1="insert into student (name, age) values ('orange', 20)" cursor.execute(sql_insert1) '第二种:元组连接插入方式' sql_insert2="insert into student (name, age) values (%s, %s)" #此处的%s为占位符,而不是格式化字符串,所以age用%s data=('shiki',25) cursor.execute(sql_insert2,data) '第三种:字典连接插入方式' sql_insert3="insert into student (name, age) values (%(name)s, %(age)s)" data={'name':'mumu','age':30} cursor.execute(sql_insert3,data) #如果数据库引擎为Innodb,执行完成后需执行cnn.commit()进行事务提交 except mysql.connector.Error as e: print('insert datas error!{}'.format(e)) finally: cursor.close() cnn.close() |
|
同样,MySQL Connector也支持多次插入,同样其使用的也是cursor.executemany,示例如下:
| 代码如下 | 复制代码 |
| stmt='insert into student (name, age) values (%s,%s)' data=[ ('Lucy',21), ('Tom',22), ('Lily',21)] cursor.executemany(stmt,data) |
|
4、查询操作
| 代码如下 | 复制代码 |
| cursor=cnn.cursor() try: sql_query='select id,name from student where age > %s' cursor.execute(sql_query,(21,)) for id,name in cursor: print ('%s\'s age is older than 25,and her/his id is %d'%(name,id)) except mysql.connector.Error as e: print('query error!{}'.format(e)) finally: cursor.close() cnn.close() |
|
5、删除操作
| 代码如下 | 复制代码 |
|
cursor=cnn.cursor() |
|
相关文章
- 超星学习通官网快捷登录入口 学习通网页版官方一键直达方法 12-21
- 英语四六级考试成绩查询官网入口 四六级考试报名官方通道 12-21
- 歪歪韩漫首页登录入口-歪歪韩漫免费漫画登录页面 12-21
- 绝区零云游戏网页版入口-2026最新云绝区零网页版畅玩地址一览 12-21
- 女神漫画极速入口-女神漫画韩漫全集免费畅读通道 12-21
- 纯纯写作网页版官方入口-纯纯写作网页版官网高速登录与访问指南 12-21