Oracle NChar类型的注意事项

You can bind or define a Java string against anNCHARcolumn without explicitly specifying the form of use argument. This implies the following:

  • If you do not specify the argument in thesetString()method,then JDBC assumes that the bind or define variable is for the sqlCHARcolumn. As a result,it tries to convert them to the database character set. When the data gets to the database,the database implicitly converts the data in the database character set to the national character set. During this conversion,data can be lost when the database character set is a subset of the national character set. Because the national character set is either UTF8 or AL16UTF16,data loss would happen if the database character set is not UTF8 or AL32UTF8.

  • Because implicit conversion from sqlCHARto sqlNCHARdata types happens in the database,database performance is degraded.

相关文章

Java Oracle 结果集是Java语言中处理数据库查询结果的一种方...
Java AES和Oracle AES是现代加密技术中最常使用的两种AES加密...
Java是一种广泛应用的编程语言,具备可靠性、安全性、跨平台...
随着移动互联网的发展,抽奖活动成为了营销活动中不可或缺的...
Java和Oracle都是在计算机领域应用非常广泛的技术,他们经常...
Java 是一门非常流行的编程语言,它可以运行于各种操作系统上...