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