安装mysql: sudo apt get install mysql server mysql client 然后mysql V查看mysql是否安装成功 sudo apt get install libmysqlclient dev python3 dev 然后 pip install mysq ...
分类:
数据库 时间:
2018-06-13 11:45:48
阅读次数:
270
问题描述: Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). Example: Note: If t ...
设计的一个项目,需要从客户端中,发生一个结构体信息给服务端,服务端对接收到的信息进行验证。这里我考虑的是将结构体转换为json,然后传递至服务端,服务端解析json即可。 由于json的数据格式就是[]byte,所以在网络传递中不需要转换,直接传递就可以了。对方接收到[]byte数据,也就是json ...
分类:
编程语言 时间:
2018-06-11 00:28:56
阅读次数:
3380
<input type="text" id="inputs" onblur="filtecharacter(this, 0)"> </body> <script> var _arr=new Array(); _arr[0]=/[\`\~\!\@\#\$\%\^\&\*\+\\\]\}\{\'\;\: ...
分类:
其他好文 时间:
2018-06-11 00:27:23
阅读次数:
130
1.eclipse 连 mysql数据库出现错误:nknown initial character set index '255' received from server. Initial client character set can be forced via the 'characterE ...
分类:
数据库 时间:
2018-06-10 20:08:40
阅读次数:
437
传送门 题目描述 Xiangqi is one of the most popular two-player board games in China. The game represents a battle between two armies with the goal of capturin ...
分类:
其他好文 时间:
2018-06-09 19:50:15
阅读次数:
205
Wide character logging Log库支持记录包含不同national characters的字符串。基本上有两种方法可以做到这一点。在类unix系统中,通常使用多字节字符编码(例如UTF 8)来表示national characters。在这种情况下,Log库可以像普通ASCII日 ...
分类:
其他好文 时间:
2018-06-09 19:46:57
阅读次数:
228
第一步:使用记事本打开mysql安装目录下的"my.ini”文件。 看看default-character-set 是不是 utf8不是的话 改为utf8即可!(以前的版本可能没有这句话 直接加上就好了!) 第二步:在mysql数据库cmd中输入:show variables like'%char% ...
分类:
数据库 时间:
2018-06-09 15:28:51
阅读次数:
164
一、下载mysql压缩包文件 下载地址:http://dev.mysql.com/downloads/mysql/ 二、压缩包解压安装 可以安装在任意一个系统盘 1、配置my.ini文件。 在D:\Java\mysql-5.6.40-winx64(注意这个目录要和你自己的目录,我这里下载的是5.6版 ...
分类:
数据库 时间:
2018-06-09 14:42:10
阅读次数:
698
Given two strings S and T, return if they are equal when both are typed into empty text editors. # means a backspace character. Can you solve it in O( ...
分类:
其他好文 时间:
2018-06-09 14:35:55
阅读次数:
119