MyISAM 和 InnoDB区别: 常规的使用操作: 1、MyISAM 节约空间,速度快 2、InnoDB 安全性高,事务的处理,多表操作。InnoDB表的每行数据都保存在主索引的叶子节点上。因此所有的InnoDB表必须包含主键,如果创建表的时候,没有显示指定主键,那么InnoDB存储引擎会创建一 ...
分类:
数据库 时间:
2020-02-11 19:28:35
阅读次数:
81
1.发现没有登录成功的返回信息,看来要盲注了 2.报错型:extractvalue() (1)爆库:uname=admin') and extractvalue(1,concat(0x7e,(select database()))) and (' &passwd=admin&submit=Submi ...
分类:
其他好文 时间:
2020-02-11 18:59:45
阅读次数:
76
Less_5 补充基础知识 1. left(a,b)左侧截取a的前b位,正确则返回1,错误则返回o Select left(database(),1)=’s’; 其中database()为security,截取的是第一个字母’s’,正确返回1 2. regexp函数 select user() re ...
分类:
数据库 时间:
2020-02-11 16:02:42
阅读次数:
100
MVCC applies to isolation levels read-committed and repeatable read (default). You don't need to specify anything for both of these features to work t ...
分类:
数据库 时间:
2020-02-10 18:19:22
阅读次数:
89
一、为了模拟项目,本处创建了一个NetCore的Web项目。打算在Models文件夹下生成数据库表的实体类。 二、在程序包管理控制台,输入“Scaffold-DbContext "Server=.\SQL2012;Database=Test;Trusted_Connection=True;" Mic ...
分类:
数据库 时间:
2020-02-10 13:55:03
阅读次数:
219
import pymysqldb = pymysql.connect('localhost', 'root', 'root', 'py123') # 本机接口,数据库账户,数据库密码,数据库名称cursor = db.cursor()# cursor.execute("create database ...
分类:
数据库 时间:
2020-02-10 11:52:37
阅读次数:
73
一般,分布式系统需要支持以下特性: 资源共享 开放性 并发性 可伸缩性 容错性 透明性 下面分别讨论。 容易理解的 资源共享 一旦授权,可以访问环境中的任何资源 资源:包括硬件(e.g. printer, scanner, camera)、软件(服务)、数据(file, database, web ...
分类:
编程语言 时间:
2020-02-10 11:28:27
阅读次数:
70
SQL INJECTION Discovering SQLi in GET Inject by browser URL. Selecting Data From Database Change the number to a big one, then you can get a useful er ...
分类:
Web程序 时间:
2020-02-09 18:41:43
阅读次数:
84
连接数据库(以mysql为例) 点击database,点击+号date source,点击Mysql。 输入host主机名,database数据库名,user用户名,和password密码。 第一次使用左下角有download missing driver files点击它进行下载(不要连联通网络! ...
分类:
数据库 时间:
2020-02-09 18:27:31
阅读次数:
1130
1 package tools 2 3 4 import ( 5 "database/sql" 6 "fmt" 7 _"github.com/go-sql-driver/mysql" 8 ) 9 10 type MySQLHelper struct { 11 Connection string 12 ...
分类:
数据库 时间:
2020-02-09 16:53:00
阅读次数:
104