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