| 排序规则 | 解释 | | | | | utf8_general_ci | 不区分大小写 | | utf8_general_cs | 区分大小写 | | utf8_bin | 区分大小写,字符串每个字符串用二进制数据编译存储,且支持存储二进制数据 | ...
分类:
数据库 时间:
2019-12-08 17:43:38
阅读次数:
96
1.登录MySQL mysql -u root -p 2.添加新用户(允许所有ip访问) create user 'test'@'*' identified by '123456'; #test:用户名,*:所有ip地址,123456:密码 3.创建数据库 CREATE DATABASE test_ ...
分类:
数据库 时间:
2019-12-08 01:20:19
阅读次数:
106
解决办法 需要设置的几处地方为: Window->Preferences->General ->Content Type->Text->JSP 最下面设置为UTF-8 Window->Preferences->General->Workspace 面板Text file encoding 选择UTF ...
分类:
系统相关 时间:
2019-12-06 19:57:21
阅读次数:
140
什么是MySQL? MySQL 是一种关系型数据库,在Java企业级开发中非常常用,因为 MySQL 是开源免费的,并且方便扩展。阿里巴巴数据库系统也大量用到了 MySQL,因此它的稳定性是有保障的。MySQL是开放源代码的,因此任何人都可以在 GPL(General Public License) ...
分类:
数据库 时间:
2019-12-06 15:19:22
阅读次数:
96
1.直接安装 sudo apt-get install subversion 2.创建版本库 sudo mkdir /home/.svn #创建隐藏文件夹 sudo svnadmin create /home/.svn/repos 3.了解版本库,进入版本库查看生成的相关文件 cd /home/.s... ...
分类:
其他好文 时间:
2019-12-05 01:15:56
阅读次数:
88
Pycharm 用Ctrl+鼠标 滚轮调节代码字体大小 File --> Setting --> Editor --> General --> 勾选Change font size (zoom) with Ctrl+Mouse Wheel ...
分类:
其他好文 时间:
2019-11-27 23:11:51
阅读次数:
131
eclipse的编码设置 找到Window->Preferences -> 依次选择General->Workspace,右侧进行编码选择。 eclipse的字体设置 找到Window->Preferences->依次选择General->Appearance->Colors and Fonts-> ...
分类:
系统相关 时间:
2019-11-26 17:35:41
阅读次数:
126
好久没用postman 了,安装上不能未回应,Could not get response 我们找到这个图标,打开setting 在General中把 SSL certificate verification 关闭(off状态),就OK了 ...
分类:
Web程序 时间:
2019-11-26 13:17:01
阅读次数:
118
输入 "{", VS 会很智能的给你补全,得到 “{}”, 如果不想享受这个服务,可以按以下设置取消: Tools -> Options -> Text Editor -> C# -> General 取消 Automatic brace completion 的复选框(brace 就是花括号、大括 ...
分类:
其他好文 时间:
2019-11-25 20:09:58
阅读次数:
403
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2019-11-24 23:55:55
阅读次数:
155