解决Sybase中文问题

浏览:
字体:
发布时间:2013-12-10 00:11:56
来源:
解决Sybase中文问题
 
1.     JDBC连接串要有字符集设置
jdbc:sybase:Tds:192.168.3.11:5000/Wfis_db?charset=cp936
 
2.     服务器配置成cp936
(1)    使用isql查看当前已经安装的字符集
isql -Usa -Plongtop
>use master
>go
>select id,name from syscharsets
>go
 id name
 --- ----------------
   0 ascii_8
   1 iso_1
   2 cp850
 
(41 rows affected)
从列表中看出没有安装cp936字符集
 
(2)    查看当前使用的缺省字符集
>sp_configure "default char"
>go
 Parameter Name                 Default     Memory Used       Config Value     Run Value               Unit                         Type
 ------------------------------     -----------    -----------                ------------          -----------          --------------------          ----------
 default character set id               2           0                             2                     2                          id                            static
 
缺省字符集的id是2,查看上面的列表,可以得知是cp850
 
(3)    因为上面的列表中没有安装cp936,所以就安装cp936字符集
进入目录C:/sybase/charsets/cp936
运行命令 charset -Usa -Plongtop binary.srt cp936
运行完成后,系统就安装了cp936字符集
 
(4)    验证是否确实安装了cp936字符集
isql -Usa -Plongtop
>use master
>go
>select id,name from syscharsets
>go
 id name
 --- ------------------------------
   0 ascii_8
   1 iso_1
   2 cp850
 50 bin_iso_1
 50 bin_cp850
 50 bin_cp936
 129 cp932bin
 137 gb2312bn
 171 cp936
 
(43 rows affected)
从列表中可以发现已经安装了cp936,id是171
 
(5)    把系统的当前缺省字符集设置为cp936
>sp_configure "default char",171
>go
In changing the default sort order, you have also reconfigured SQL Server's
default character set.
 Parameter Name                 Default     Memory Used       Config Value         Run Value              Unit                 Type
 ------------------------------    -----------      -----------                ------------         -----------        --------------------         ----------
 default character set id           2               0                              171                   2                          id                   static
 
(1 row affected)
Configuration option changed. Since the option is static, Adaptive Server must
be rebooted in order for the change to take effect.
Changing the value of 'default character set id' to '171' increases the amount
of memory ASE uses by 6 K.
(return status = 0)
 
(6)    重启Sybase服务,使更改生效
第一次重启,系统会对已经存在的数据进行转换,转换完成后自动停止服务,只要再次启动服务就可以了。
 
(7)    更改DB客户端的字符集
DBArtisan中要更改客户端的字符集为cp936才能连接cp936的服务器
通过菜单/Logfile/Options...打开对话框,选择Connection标签,
更改Client Character输入框的值为cp936。
 
数据库的charset修改为cp936时,使用isql按如下的方式
isql -Usa -Plongtop -Sdbserver -Jcp936
>更多相关文章
24小时热门资讯
24小时回复排行
资讯 | QQ | 安全 | 编程 | 数据库 | 系统 | 网络 | 考试 | 站长 | 关于东联 | 安全雇佣 | 搞笑视频大全 | 微信学院 | 视频课程 |
关于我们 | 联系我们 | 广告服务 | 免责申明 | 作品发布 | 网站地图 | 官方微博 | 技术培训
Copyright © 2007 - 2024 Vm888.Com. All Rights Reserved
粤公网安备 44060402001498号 粤ICP备19097316号 请遵循相关法律法规
');})();