How can Hibernate map the SQL data-type nvarchar(max)?

后端 未结 4 1173
我在风中等你
我在风中等你 2020-12-14 10:50

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).

4条回答
  •  北海茫月
    2020-12-14 11:37

    I think it is registerColumnType(Types.VARCHAR, "nvarchar($l)"); // l like _l_ength, not 1.

提交回复
热议问题