随笔分类 -  Hibernate

摘要:以sysdba登录数据库,给相应地用户赋予以下权限: grant select on sys.dba_pending_transactions to <数据库用户>; grant select on sys.pending_trans$ to <数据库用户>; grant select on sys 阅读全文
posted @ 2016-06-15 11:06 taony 阅读(1241) 评论(0) 推荐(0)
摘要:在hibernate Annotation中,实体BLOB、CLOB类型的注解与普通的实体属性有些不同,具体操作如下:BLOB类型,类型声明为byte[]: private byte[] content; 注解: CLOB类型,类型声明为String即可: private String remark 阅读全文
posted @ 2016-03-18 09:25 taony 阅读(2053) 评论(0) 推荐(0)