self.cr.execute(sql, ) # res = self.cr.fetchmany(1000) while True: res = self.cr.fetchmany(1000) print(len(res),res) if not res: break return res fetc ...
分类:
数据库 时间:
2020-11-20 12:06:46
阅读次数:
12
本节重点: pymysql的下载和使用 execute()之sql注入 增、删、改:conn.commit() 查:fetchone、fetchmany、fetchall 一、pymysql的下载和使用 之前我们都是通过MySQL自带的命令行客户端工具mysql来操作数据库,那如何在python程序 ...
分类:
数据库 时间:
2020-06-13 23:34:34
阅读次数:
94
1.增、删、改 # 导入模块 import pymysql # 建立连接 conn = pymysql.connect( host='127.0.0.1', # 地址 port=3306, # 端口号 user='root', # 用户名 password='fuqian1314', # 密码 db ...
分类:
数据库 时间:
2020-02-10 18:28:42
阅读次数:
106
操作流程 导入模块 from pymsql import 创建connect链接 conn = connect(host, port, user, password, database, charset) 获取游标对象 cs1 = conn.cursor() 执行语句 count = cs1.exe ...
分类:
数据库 时间:
2019-12-31 15:59:28
阅读次数:
118
pymysql:python操作mysql 安装 增删改查 创建表 增 删 改 查 游标操作 pymysql事务 sql注入 索引 ...
分类:
数据库 时间:
2019-09-27 10:44:18
阅读次数:
108
import pymysql import xlrd import re import linecache import docx import sys import docx from docx import Document #导入库 import prettytable as pt impor ...
分类:
其他好文 时间:
2019-08-19 09:51:44
阅读次数:
79
原文: http://106.13.73.98/__/31/ 目录 关于sql注入 用户存在,绕过密码 用户不存在,绕过用户与密码 解决sql注入问题 commit() 增 改 删 查询数据库 fetchone() fetchall() fetchmany() 补充: 建立链接时间过长后会自动断开链 ...
分类:
数据库 时间:
2019-08-11 21:33:18
阅读次数:
127
原文: http://106.13.73.98/__/31/ 目录 关于sql注入 用户存在,绕过密码 用户不存在,绕过用户与密码 解决sql注入问题 commit() 增 改 删 查询数据库 fetchone() fetchall() fetchmany() 补充: 建立链接时间过长后会自动断开链 ...
分类:
数据库 时间:
2019-08-08 19:15:20
阅读次数:
112
MySQL驱动程序安装: 我们使用Django来操作MySQL,实际上底层还是通过Python来操作的。因此我们想要用Django来操作MySQL,首先还是需要安装一个驱动程序。在Python3中,驱动程序有多种选择。比如有pymysql以及mysqlclient等。这里我们就使用mysqlclie ...
分类:
数据库 时间:
2019-07-29 20:24:03
阅读次数:
146
SQLite3 of python 一、SQLite3 数据库 SQLite3 可使用 sqlite3 模块与 Python 进行集成,一般 python 2.5 以上版本默认自带了sqlite3模块,因此不需要用户另外下载。 在 学习基本语法之前先来了解一下数据库是使用流程吧 ↓↓↓ 所以,首先要 ...
分类:
数据库 时间:
2019-05-29 16:38:12
阅读次数:
123