将条件对象转换为mysql db中的列表

时间:2013-09-04 13:10:02

标签: mysql hibernate

当我使用oracle数据库时,以下查询在hibernate中完美执行。但是我正在尝试使用mysql db意味着它不起作用它会在“源附件”的详细信息中抛出以下异常“Source Not Found Exception”不包含mysqlIO.class文件的源代码。

import org.hibernate.Criteria;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Projections;
import org.hibernate.criterion.Restrictions;
import org.hibernate.criterion.Criterion;
import com.hibernatehelper.HibernatePlugin;
import com.cir.hibernatebean.CIRMTradeCopiesSlab;

Criteria cr = sesInsert.createCriteria(CIRMTradeCopiesSlab.class);
            //cr.add(Restrictions.eq("mtcsbrncode","MDS"));
            Criterion criterion = Restrictions.eq("mtcsbrncode", "MDS");
            cr.add(criterion);
List AgentRecList=cr.list();

0 个答案:

没有答案