Hi,
I am still getting the error :
Here is my Database Table :
id 4 int identity langCode -9 nvarchar tagName -9 nvarchar tagValue -16 ntext lastUpdated 93 smalldatetime
===My Entity:===
@Id @Column(name="id") private int id; @Column(name="langCode") private String langCode; @Column(name="tagName") private String tagName; @Column(name="tagValue", columnDefinition="ntext", length=1073741823) private String tagValue; @Column(name="lastUpdated") private Date lastUpdated;
==Overrident Dialact == with follwoing line :
registerColumnType(Types.LONGNVARCHAR, 1073741823, "ntext" );
And i Changed the Dialact to the overrident one with the above code.
I am still getting the same error :
17:28:13,731 ERROR [stderr] (http--127.0.0.1-8080-1) org.springframework.orm.jpa.JpaSystemException: No Dialect mapping for JDBC type: -9; nested exception is org.hibernate.MappingException: No Dialect mapping for JDBC type: -9
|