Python操作关系型数据库Mysql
程序员文章站
2022-07-05 20:40:21
...
1. 创建数据表
2. 安装包py3(pymysql), py2(MySQLdb)
3. python操作数据库
#1. 导入模块,py3(pymysql), py2(MySQLdb)
import pymysql
#1. 创建连接
conn = pymysql.connect(host='localhost',
user='root',
password="westos",
db='westos',
charset='utf8')
#2. 创建游标
cur = conn.cursor()
#3. 对数据库进行操作
#3-1). 创建表users
create_sql = 'create table users (name varchar(30),id int);'
cur.execute(create_sql)
#3-2). 查询操作
select_sql = "select * from users"
cur.execute(select_sql)
#查询语句结果不会默认返回的,需要通过iofetchone/fetchmany/fetchall进行获取
print(cur.fetchall())
#3-3). 插入语句
insert_sql = "insert into users values('李四', 20)"
cur.execute(insert_sql)
print("插入数据成功")
#注意: 如果时插入和删除或者更新数据时,需要提交修改的信息到数据库中
conn.commit()
#4. 关闭游标
cur.close()
#5. 关闭连接
conn.close()
插入多条数据
info = [(i,i) for i in range(100,1000)]
# 第一种方式
inser_sqli = "insert into hello values(%d,'%s');"
for item in info:
print('insert语句:',inser_sqli %item)
cur.execute(inser_sqli %item)
# 第二种方式
inser_sqli = "insert into values('%s','%s');"
cur.executemany(inser_sqli,info)
查询数据库
# 可以通过cursor.scroll(position, mode="relative | absolute")方法,
# 来设置相对位置游标和绝对位置游标
# 当mode='absolute'时,代表绝对移动,
# value就代表移动的绝对位置,value=0就代表移动到位置0处,
# 就是结果集开头,
# value=3就是移动到位置3处,也就是第4条记录处
mode缺省值为'relative',代表相对移
# 当mode='relative'时,value就是移动的长度,
# value>0向后移动(从位置0移动到位置2),
# value<0向前移动(比如从位置2移动到位置0)
sql = 'select * from hello'
# 默认不返回查询结果集 返回的是数据记录数
result = cur.execute(sqli)
# print(result)
# # a = cur.fetchone()
# # print(a)
# # 获取下一条查询结果集
# # print(cur.fetchone())
# # print(cur.fetchone())
# # 获取指定个数查询结果集
# # print(cur.fetchmany(4))
# info = cur.fetchall()
# print(info)
print(cur.fetchmany(3))
# print('移动到指针最开始的地方...')
# cur.scroll(0,'absolute')
# print(cur.fetchmany(3))
# print(cur.fetchmany(2))
# print(cur.fetchall())
cur.scroll(-2,mode='relative')
print(cur.fetchmany(2))
推荐阅读
-
python备份文件以及mysql数据库的脚本代码
-
关于各种数据库 Insert时同时取到Id的操作_MySQL
-
使用PHPMYADMIN操作mysql数据库添加新用户和数据库的方法_PHP教程
-
MySQL学习笔记2:数据库的基本操作(创建删除查看)
-
linux下perl操作mysql数据库(需要安装DBI)
-
python数据库操作常用功能使用详解(创建表/插入数据/获取数据)
-
Java基于jdbc连接mysql数据库操作示例
-
MySQL学习第五天 MySQL数据库基本操作
-
MySQL数据库在主流操作系统下的同步_MySQL
-
Django1.7+python 2.78+pycharm配置mysql数据库