1、在Nuget上安装NLog 2、新建NLog.config文件 <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http:/ ...
分类:
其他好文 时间:
2020-03-26 12:31:07
阅读次数:
85
1.查询数据库 查看有哪些数据库: 1 SHOW DATABASES; information_schema:数据字典 mysql:控制和管理信息 performance_schema:性能字典 sys:系统数据库 查看数据库信息: SHOW CREATE DATABASE 数据库名称; 1 SHO ...
分类:
数据库 时间:
2020-03-25 23:24:19
阅读次数:
87
由OpenDigg 出品的前端开源项目周报第四期来啦。我们的前端开源周报集合了OpenDigg一周来新收录的优质的前端开发方面的开源项目,方便前端开发人员便捷的找到自己需要的项目工具等。 ndm npm桌面管理器 table-dragger 拖拽和排序表格的控件 vue-play 展示Vue组件的最 ...
分类:
其他好文 时间:
2020-03-25 10:57:50
阅读次数:
62
pt-online-schema-change使用 工作原理:1、如果存在外键,根据alter-foreign-keys-method参数的值,检测外键相关的表,做相应设置的处理。没有使用 --alter-foreign-keys-method=rebuild_constraints 指定特定的值, ...
分类:
其他好文 时间:
2020-03-24 09:20:23
阅读次数:
141
今天在ctfhub整理了几个sql注入的解题过程,还算是比较详细的。 知识点都是比较常见的:每个题大致涉及的知识点用一张表格解释 !注:下方的 information_schema.xxxxxxxxxxxxxx皆表示 information_schema库下的表 如:schemata、tables等 ...
分类:
数据库 时间:
2020-03-24 01:09:31
阅读次数:
409
schemaLocation添加 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 引用地址:https://blog.csdn ...
分类:
编程语言 时间:
2020-03-24 01:05:09
阅读次数:
73
web.xml 各版本的 Schema 头部声明 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "htt ...
分类:
Web程序 时间:
2020-03-21 16:22:57
阅读次数:
72
use information_schema; -- 查看 各库 占用 大小 select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size, concat(truncate(sum(ind ...
分类:
数据库 时间:
2020-03-21 13:04:23
阅读次数:
105
select table_schema, table_name from information_schema.tables where table_name not in (select distinct table_name from information_schema.columns whe ...
分类:
数据库 时间:
2020-03-20 19:58:30
阅读次数:
263