116117118119120121122
* @return */ public static InsertDAO getInsertDAO(String dsName) { DataSource ds = DataSourceWrapCache.get(dsName); DBInfoConfigBean dcb = DBInfoConfigBeanCache.get(dsName); return new InsertDAOImpl(ds, dcb.getDataBaseType()); }
122123124125126127128
} public static InsertDAO getInsertDAO() { DataSource ds = DataSourceWrapCache.get(); DBInfoConfigBean dcb = DBInfoConfigBeanCache.get(); return new InsertDAOImpl(ds, dcb.getDataBaseType()); }
124125126127128129130
*/ public static InsertDAO getInsertDAO(String dsName) { DataSource ds = DataSourceWrapCache.get(dsName); DBInfoConfigBean dcb = DBInfoConfigBeanCache.get(dsName); return new InsertDAOImpl(ds, dcb.getDataBaseType()); }
130131132133134135136