当前位置: 代码迷 >> Sybase >> Hibernate annotation处置sybase text字段
  详细解决方案

Hibernate annotation处置sybase text字段

热度:3031   发布时间:2013-02-26 00:00:00.0
Hibernate annotation处理sybase text字段
在hibernate Annotation中,实体CLOB类型的注解,其他数据库只要按如下配置
@Lob
@Basic(fetch = FetchType.EAGER)
@Column(name="REMARK", columnDefinition="CLOB", nullable=true)
public String getRemark() {
    return this.remark;
}

但是这在sybase中会导致
不支持方法com.sybase.jdbc2.jdbc.SybResultSet.getBlob(String),不应调用它
这种错误

尝试后发现只要这样写

@Basic(fetch = FetchType.EAGER)
@Column(name="REMARK", columnDefinition="text", nullable=true)
public String getRemark() {
    return this.remark;
}

就能正常存取数据了
  相关解决方案