Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:3.2.5
Quick question, I am reverseengineering some tables, and all is going fine so far, however my sqlserver has a table with a column of type TEXT. Now I understand that hibernate has native support for sqlservers TEXT datatype, but reversing results in
java.sql.Clob
for this datatype. I've tried to map TEXT to String in my type-mapping section but with little luck
<sql-type jdbc-type="TEXT" hibernate-type="String" />
wich gives me, at runttime
org.hibernate.MappingException: jdbc-type: TEXT is not a known JDBC Type nor a valid number
Ideas ? :)