use of org.eweb4j.orm.dao.select.SelectDAOImpl in project eweb4j-framework by laiweiwei.
the class DAOFactory method getSelectDAO.
/**
* 创建SelectDAOImpl实例
*
* @param dsName
* 数据库配置信息Bean的名字,默认下在eweb4j-dbInfo-config.xml文件中<name></name>
* 找到这个值
* @return
*/
public static SelectDAO getSelectDAO(String dsName) {
DataSource ds = DataSourceWrapCache.get(dsName);
DBInfoConfigBean dcb = DBInfoConfigBeanCache.get(dsName);
return new SelectDAOImpl(ds, dcb.getDataBaseType());
}
use of org.eweb4j.orm.dao.select.SelectDAOImpl in project eweb4j-framework by laiweiwei.
the class DAOFactory method getSelectDAO.
public static SelectDAO getSelectDAO() {
DataSource ds = DataSourceWrapCache.get();
DBInfoConfigBean dcb = DBInfoConfigBeanCache.get();
return new SelectDAOImpl(ds, dcb.getDataBaseType());
}
Aggregations