phpmyadmin 创建数据库的默认编码是:latin1_swedish_ci修改默认编码的方法是1.登录phpmyadmin2.在导航部分点:变量3.Ctrl+F 查找:latin1_swedish_ci4.把latin1_swedish_ci 修改为 你想要的编码,我设置的是:utf8_gen...
分类:
数据库 时间:
2014-06-28 23:41:02
阅读次数:
257
用postgres 的pg_dump可以实现从从postgres数据库中导出数据。[1]只导出所有对象的数据库结构 C:\>pg_dump -f DDDDDD.sql -i -C -E UTF8 -n public -s -U portal -h localhost -W portal ...
分类:
系统相关 时间:
2014-06-28 18:06:55
阅读次数:
312
Connect("localhost", "root", "", "php100")or die("错误");$db->Execute("set names 'UTF8'");$query=$db->execute("select * from `php100`");while($row=$quer...
分类:
数据库 时间:
2014-06-28 13:59:08
阅读次数:
294
转载地址:http://blog.csdn.net/donglynn/article/details/17056099错误SQL 查询:DELETE FROM `zmax_lang` WHERE CONVERT( `zmax_lang`.`lang` USING utf8 ) = 'fr' ...
分类:
其他好文 时间:
2014-06-26 21:31:40
阅读次数:
204
网站代码主要使用GBK编码格式,Eclipse默认打开的是UTF8编码,所以经常是需要进行转换一下的,否则一些中文字符就会乱码显示。1.配置workspace的编码格式:windows->Preferences->general->Workspace,右侧Text file encoding,选择O...
分类:
系统相关 时间:
2014-06-25 13:54:26
阅读次数:
275
查看mysql的所有用户及密码和所属权限mysql>selectuse,password,hostmysql.user;查看mysql支持的存储引擎mysql>showplugins;设置编码类型为utf8vi/etc/my.cnf在[mysqld]配置选项下添加character-set-server=utf8查看编码是什么类型mysql>howvariableslike"%char%";
分类:
数据库 时间:
2014-06-24 16:15:44
阅读次数:
286
//DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(Dictionary));//MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(json...
分类:
其他好文 时间:
2014-06-23 08:29:28
阅读次数:
269
最近项目使用mysql数据库,以前没接触过。所以找了些资料学习。
目前通过navicat for mysql工具进行mysql数据基本操作。
1.安装navicat for mysql后,建立连接。
2.导入需要创建的sql语句。通过选中库名称右键运行sql文件,加载需要导入的sql语句。
3.增加其中数据,注意增加的字段如果增加提示1306错误,需要修改字段的符号位utf8后即可增加
...
分类:
数据库 时间:
2014-06-22 21:11:36
阅读次数:
210
这个方法是用windows的字符集转换的,跟sybase 的unicode码表可能在某些符号上有差别,对于大部分字符来说,尤其是 汉字,应该不会有问题的,如果要求比较高的话,可以买sybase的 unicode开发包,:P [code] #include #include #include #...
分类:
其他好文 时间:
2014-06-21 13:25:12
阅读次数:
254