2019/9/28 由于平时遇到的编码比较多且杂 记性实在太差 决定起草记录之 一,基础知识 1、ASCII码 美国标准信息交换码:ASCII ( American Standard Code for Information Interchange ) A在ascii中定义为01000001,也就是 ...
分类:
Web程序 时间:
2019-09-28 17:41:34
阅读次数:
172
# For more information on configuration, see:# * Official English Documentation: http://nginx.org/en/docs/# * Official Russian Documentation: http://n ...
分类:
其他好文 时间:
2019-09-26 11:21:24
阅读次数:
73
Versioning information could not be retrieved from the NuGet package repository. Please try again later. vscode 修改文件 C:\Users\dong\.vscode\extensions\ ...
分类:
其他好文 时间:
2019-09-24 17:40:24
阅读次数:
162
docker-compose 的问题 要改环境变量 ...
分类:
Web程序 时间:
2019-09-21 10:56:19
阅读次数:
114
自带的4个系统数据库:information_schema、mysql、performance_schema、sys; information_schema:这个数据库保存了mysql服务器所有数据库的信息。比如数据库的名、数据库的表、访问权限、数据库表的数据类型,数据库索引的信息等等。 perfo ...
分类:
数据库 时间:
2019-09-20 19:06:43
阅读次数:
141
用sql获取数据库中所有的表名的方法:1、oracle下:select table_name from all_tables;2、MySQL下:select table_name from information_schema.tables where table_schema='csdb' and ...
分类:
数据库 时间:
2019-09-19 14:23:50
阅读次数:
93
一、SQL字符集 它是一个系统支持的所有抽象字符的集合。字符是各种文字和符号的总称,包括各国家的文字、标点符号、图形符号、数字等 常用的字符集有:utf8、utf8mb4、utf8mb3(8.0),现在推荐使用的是utf8mb4的字符集,支持更加丰富。它是数据库内部的存储格式 注意:要保证所有的字符 ...
分类:
数据库 时间:
2019-09-18 14:31:53
阅读次数:
136
Windows Server2008R2 服务安装 服务一:IIS,internet information services,互联网信息服务,微软开发的运行在Windows系统中互联网服务,提供了web、ftp、smtp服务 Windows server 2003、xp --àiis6 Windo ...
分类:
其他好文 时间:
2019-09-18 00:50:53
阅读次数:
89
解决方案1 在mysql中数据库information_schema中查询下面三张表 select * from innodb_trx; ## 当前运行的所有事务 select * from innodb_locks; ## 当前出现的锁 select * from innodb_lock_wait ...
分类:
数据库 时间:
2019-09-17 13:24:03
阅读次数:
84
Java如何识别对象和类的信息,主要方式有两种: (1) RTTI,它假定我们在编译时已经知道了所有的类型。 (2)反射,允许我们在运行时发现和使用类信息。 1、为什么需要RTTI RTTI(run-time type information)即:运行时类型信息。 当从数组中取出元素时,这种容器-- ...
分类:
编程语言 时间:
2019-09-16 14:08:03
阅读次数:
94