Hibernate 如何映射 SQL 数据类型 nvarchar(max)?
我的 SQL-2005 数据库中有一个列曾经是 varchar(max),但它已更改为 nvarchar(max )。
现在我需要更新我的休眠映射文件以反映更改,这就是它以前的样子:
<元素类型=“文本”列=“值”/>
当我尝试运行该应用程序时,出现以下错误:
org.hibernate.HibernateException:[Table] 中列值的列类型错误。 找到:ntext,预期:text
我应该在“type”属性中放入什么内容才能将列正确映射为 nvarchar(max)?
我尝试将类型设置为 ntext,但 hibernate 不知道那是什么。 我尝试将类型设置为 string,但它将 string 视为 text 类型。
I have a column in my SQL-2005 database that used to be a varchar(max), but it has been changed to an nvarchar(max).
Now I need to update my hibernate mapping file to reflect the change, and this is what it used to be:
<element type="text" column="Value"/>
When I try to run the application, the following error appears:
org.hibernate.HibernateException: Wrong column type in [Table] for column Value. Found: ntext, expected: text
What should I put in the 'type' attribute to correctly map the column as an nvarchar(max)?
I've tried setting the type to ntext, but hibernate didn't know what that was. I tried setting the type to string, but it treated string as a text type.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
对我有用的是将实际的列定义放在 @Column 注释中:
What worked for me is to put the actual column definition in a @Column annotation:
可以通过以下方式修复
@Nationalized
来自 hibernate 的注释,标记字符数据类型,如国家化变体(NVARCHAR、NCHAR、NCLOB 等)。
It can be fixed by
@Nationalized
annotation from hibernate, that marks a character data type like a nationalized variant (NVARCHAR, NCHAR, NCLOB, etc).
在 Tremend 技术博客 中找到了答案。 你必须编写自己的 SQLServerDialect 类,它看起来像这样:
这个类将 Hibernate 的类型映射到 SQL 类型,因此该类将映射 nvarchar(max) SQL 数据输入 Hibernate 的 CLOB 数据类型。
当 Hibernate 询问代码为 2005 的数据类型(看起来像是 nvarchar(max) 数据类型)时,getTypeName 方法用于返回“ntext”。
最后,您需要将 hibernate 持久性方言更改为这个新的 SQLServerDialect 类,该类允许 hibernate 将数据类型转换为 SQL 数据类型。
Found the answer at Tremend Tech Blog. You have to write your own SQLServerDialect class, it looks something like this:
This class maps Hibernate's types to SQL types, so the class will map the nvarchar(max) SQL Data Type to Hibernate's CLOB data type.
The getTypeName method is used to return "ntext" when Hibernate asks about the data type with code 2005 (which looks like it's the nvarchar(max) data type).
Finally, you need to change your hibernate persistence dialect to this new SQLServerDialect class, which allows hibernate to translate data types into SQL data types.
我觉得是这样的
registerColumnType(Types.VARCHAR, "nvarchar($l)"); // 我喜欢_l_ength,而不是1。
I think it is
registerColumnType(Types.VARCHAR, "nvarchar($l)"); // l like _l_ength, not 1.
将
@Nationalized
与length = Integer.MAX_VALUE
结合使用应该可以解决 NVARCHAR(MAX) 的问题。实体类应该有点像这样
有关更多详细信息,请查看文档 此处
Using
@Nationalized
withlength = Integer.MAX_VALUE
should resolve the issue of NVARCHAR(MAX).The entity class should somewhat like this
For more details checkout the documentation here