79808182838485
* 找到这个值 * @return */ public static DeleteDAO getDeleteDAO(String dsName) { DataSource ds = DataSourceWrapCache.get(dsName); return new DeleteDAOImpl(ds); }
84858687888990
return new DeleteDAOImpl(ds); } public static DeleteDAO getDeleteDAO() { DataSource ds = DataSourceWrapCache.get(); return new DeleteDAOImpl(ds); }
86878889909192
91929394959697