使用准备好的语句我试图将俄语字符存储在特定表的字段中.表和字段使用utf8字符集和utf8_bin排序规则.
如果我通过IDE或命令行手动运行插入,则字符串将按预期保存.
INSERT INTO utf8table VALUES('Анатолий Солоницын');
然后,我可以查询该表,并且还可以返回预期的String.
通过tomcat的context.xml文件中的资源设置Connection,其中包含以下配置:
正如我所说,我能够很好地读取字符串/字符,所以我假设表和连接设置都正确设置.
我通过以下方式使用PreparedStatement / CallableStatement:
CallableStatement callableStmt = __MysqLConnector.getConnection().prepareCall("INSERT INTO utf8table VALUES(?)");callableStmt.setString(1,"Анатолий Солоницын");callableStmt.executeUpdate();
什么是插入数据库而不是АнатолийСолоницын:???????? ?????????
Also note that “normal” utf-8 strings,such as über,are getting saved
properly.
都
System.getProperty("file.enCoding")
和
java.nio.charset.Charset.defaultCharset().name()
也都返回UTF-8.
任何帮助表示赞赏.谢谢
最佳答案您需要在数据库URL中定义连接编码,而不是在属性中定义.
请参阅http://dev.mysql.com/doc/refman/4.1/en/connector-j-reference-charsets.html
总结Warning Do not issue the query ‘set names’ with Connector/J,as the
driver will not detect that the character set has changed,and will
continue to use the character set detected during the initial
connection setup.
以上是内存溢出为你收集整理的Java – 使用PreparedStatement在mysql数据库中存储UTF-8字符(特别是俄语字符)全部内容,希望文章能够帮你解决Java – 使用PreparedStatement在mysql数据库中存储UTF-8字符(特别是俄语字符)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)