public DataSet RecuperarDatos(string _strStoreProcedure) { _exception = null; ControladorDB Acceso = new ControladorDB("CONAPD13"); DataSet ds = new DataSet(); try { if (Acceso.exception == null) { ds = Acceso.ExecuteDataSetdb(_strStoreProcedure, _lparams); if (Acceso.exception != null) { _exception = new Exception("Error de base de datos", Acceso.exception); } } } catch (Exception ex) { ds = new DataSet(); _exception = ex; } return ds; }
public DataSet RecuperarDatos(string _strStoreProcedure) { _exception = null; ControladorDB Acceso = new ControladorDB("CONAPD13"); DataSet ds = new DataSet(); try { if (Acceso.exception == null) { ds = Acceso.ExecuteDataSetdb(_strStoreProcedure, _lparams); if (Acceso.exception != null) { _exception = new Exception("Error de base de datos", Acceso.exception); } } } catch (Exception ex) { ds = new DataSet(); _exception = ex; } return(ds); }