hibernate中对于数据库的Text注解出现 No Dialect mapping for JDBC type: -1解决方法

hibernate中对于数据库的Text数据类型不支持。
   hibernate 使用hql查询包含text类型字段的时候很好。如果使用native sql也就是使用  createSQLQuery方法查询text类型的时候总是报错:
org.hibernate.MappingException: No Dialect mapping for JDBC type:-1
       atorg.hibernate.dialect.TypeNames.get(TypeNames.java :56)

是hibernate与mysql的jdbc驱动配合上出现了问题:对于 mysql text类型jdbc  ResultSetMetaData.getColumnType  返回-1  ,而hibernate没有注册该类型,所以导致createSQLQuery 报 No Dialect mapping for JDBCtype: -1。


解决方法:

1、写个类集成方言,然后自己实现对text的支持

import java.sql.Types;  
 import org.hibernate.dialect.MySQL5Dialect;  
 public class DialectForInkfish extends MySQL5Dialect {  
     public DialectForInkfish() {  
         super();  
         registerHibernateType(Types.LONGVARCHAR, 65535, "text");  
     }  
 }  

2、

修改Hibernate配置文件hibernate.cfg.xml,把 

<property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>  
修改为: 
<property name="dialect">com.ibm.crl.inkfish.config.DialectForInkfish</property> 

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。