数据库对m³等特殊符号的支持
目前我只遇到过m³这个特殊符号,会影响正常使用。
比如,我在数据库中搜索:
select * from table where container='10m³';
即使数据库中对应的值,但也无法搜索出。
我的解决方法是,在存入数据库前将m³转换为了立方米,再存入数据库。
当然,还有更好的解决方式:
select * from table where container=N'10m³';
加上了N表示符合Unicode标准。
** Then I looked up at the sky and saw the sun **
posted on 2017-08-24 15:11 chenyangsocool 阅读(697) 评论(0) 编辑 收藏 举报