[阅读: 781] 2005-11-29 03:43:06
package com.service.customerlogin;
import java.sql.SQLException;
public class customerDAOFactory {
public static customerDAO getDAO() throws Exception {
customerDAO customerdao = null;
try {
customerdao = (customerDAO) (new MSSQLcustomerDAO());
} catch (Exception sqle) {
sqle.printStackTrace();
}
return customerdao;
}
}