使用 JPA 时如何设置 Oracle NLS_LANG
我正在使用 JPA 访问 Oracle 数据库,该数据库的编码设置为 ISO-8859-1。
如何使用 JPA 设置 NLS_LANG 以接收正确编码的数据?
我怀疑它应该设置在持久性上下文 XML 中的某个位置。
I am using JPA to access an Oracle database which has its encoding set to ISO-8859-1.
How do I set NLS_LANG using JPA to receive data in the correct encoding?
I suspect it should be set somewhere in the persistence context XML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JDBC 驱动程序负责处理一切。它知道编码值是什么,并使用适当的编码,而无需您执行任何操作。
The JDBC driver takes care of everything. It knows what the encoding value is and uses the appropriate encoding without any action on your part.