0

当我使用 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();
4

0 回答 0