【显示utf8字符集】show collation like "utf8%";(排序的比较规则:ci,cs,bin:不区分大小写,区分大小写,字节比较)【更改数据库编码】alter database db_name character set utf8;
分类:
数据库 时间:
2014-11-16 12:04:34
阅读次数:
226
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:
其他好文 时间:
2014-11-16 11:57:11
阅读次数:
145
'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).The matching should cover the entire input stri...
分类:
其他好文 时间:
2014-11-15 06:35:33
阅读次数:
152
问题:就是写HTML+JSP代码时有些中文,保存时提示sava could not be completed.Reason:some characters cannot be mapped using "ISO-8859-1" character encoding.Either change the...
分类:
Web程序 时间:
2014-11-14 22:28:25
阅读次数:
288
原文网址:http://blog.163.com/magicc_love/blog/static/18585366220123111128283/启动PL/SQL Developer 报字符编码不一致错误Database character set (AL32UTF8) and Client cha...
分类:
数据库 时间:
2014-11-13 16:05:53
阅读次数:
276
数据库的操作:创建,查看,修改,删除 *创建: 创建一个名称为mydb1的数据库。 create database mydb1; 创建一个使用utf-8字符集的mydb2数据库。 create database mydb2 character set utf8; 创建一个使用utf-8...
分类:
数据库 时间:
2014-11-13 15:56:30
阅读次数:
235
首先在新建数据库时一定要注意生成原数据库相同的编码形式,如果已经生成可以用phpmyadmin等工具再整理一次,防止数据库编码和表的编码不统一造成乱码。方法一: 通过增加参数 –default-character-set = utf8 解决乱码问题mysql -u root -p password ...
分类:
数据库 时间:
2014-11-13 14:19:21
阅读次数:
214
1.1getwordincrements linenumin scan forward to a nonspace orEOF6but not after copy the word into buf[0..size-1]7when aword endsat a new-line character...
分类:
其他好文 时间:
2014-11-13 12:36:29
阅读次数:
131
一直不明白emacs和shell的文档中为什么都是用M- 和 C- ( ^character)而不使用Alt-key和Ctrl-key,知道看到一篇文章才了然。之后细说一下这方面的地方ref:http://ergoemacs.org/emacs/modernization_meta_key.html
分类:
其他好文 时间:
2014-11-13 12:26:35
阅读次数:
239
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
The Sudoku board could be partially filled, where empty cells are filled with the character '.'.
A partially fille...
分类:
其他好文 时间:
2014-11-12 17:55:20
阅读次数:
189