sql注入后可以通过该数据库获取所有表的字段信息 1. COLLATIONS表 提供有关每个字符集的排序规则的信息。 COLLATIONS表包含以下列: COLLATION_NAME 排序规则名称。 CHARACTER_SET_NAME 与排序规则关联的字符集的名称。 ID 排序规则ID。 IS_D... ...
分类:
数据库 时间:
2018-12-20 21:07:33
阅读次数:
242
因为es6在node中用的比较频繁,最近在按计划根据阮一峰的es6教程从头开始学习一遍, 第一步遇到的就是“看似非常熟悉”的let小伙伴,核心character如下: 即:let变量的作用域只在块内。在global全局的if/while等块级语句里面实践了一下,的确是OK的,比var全局挂好多了,直 ...
分类:
其他好文 时间:
2018-12-20 19:06:58
阅读次数:
140
问题1: 解决办法: 在客户端上执行 或修改MySQL配置文件 问题2 解决方法: 配置文件my.cnf添加下列参数即可。 问题3 解决方法: 既然不存在那就创建一个,当然要先use mysql才行,不然直接创建会报错. SQL CREATE TABLE ( char(64) NOT NULL, c ...
分类:
数据库 时间:
2018-12-18 17:22:20
阅读次数:
209
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Input: "aba" Output: True Exa ...
分类:
其他好文 时间:
2018-12-18 11:02:53
阅读次数:
180
A character string is said to have period k if it can be formed by concatenating one or more repetitions of another string of length k. For example, t ...
分类:
其他好文 时间:
2018-12-18 02:34:26
阅读次数:
201
Sudoku In the game of Sudoku, you are given a large 9 × 9 grid divided into smaller 3 × 3 subgrids. For example,Given some of the numbers in the grid, ...
分类:
其他好文 时间:
2018-12-17 22:38:26
阅读次数:
217
查看数据库的字符编码。 mysql> \s show variables like '%char%'; 查看新建数据库编码 show create database db1; 设置编码格式,会话级别 set character_set_server=utf8; 设置编码格式,全局 set globa ...
分类:
数据库 时间:
2018-12-17 14:43:46
阅读次数:
201
package cn.sasa.demo1; public class TestDemo { public static void main(String[] args) { /** *基本数据类型对应的包装类 *char ---- Character *int ------ Integer *by... ...
分类:
编程语言 时间:
2018-12-17 11:47:07
阅读次数:
183
执行安装前的准备工作:1.安装操作系统:http://blog.51cto.com/mflag/23003592.安装依赖包:http://blog.51cto.com/mflag/23009093.上传并解压安装包;http://blog.51cto.com/mflag/23009124.修改配置文件:http://blog.51cto.com/mflag/2300914运维、网管必会技能:li
分类:
数据库 时间:
2018-12-17 02:05:06
阅读次数:
311