/// <summary> /// Carga los datos del datareader en los atributos de una instancia /// </summary> /// <param name="objeto">instancia donde se cargaran los datos</param> /// <param name="dr">DataReader con los datos a cargar</param> private static void cargarDatos(ListaPrecio objeto, MySqlDataReader dr) { int id = 0; int.TryParse(dr[dbCampoId].ToString(), out id); objeto.Codigo = id; objeto.Nombre = dr[dbCampoNombre].ToString(); }
/// <summary> /// Carga en la instacia actual los atributos del Id pasado por parámetro /// </summary> public static List <IListaPrecio> obtener() { //limpiaDatos(); List <IListaPrecio> retorno = new List <IListaPrecio>(); MySqlConnection conexion = Database.obtenerConexion(true); MySqlCommand comando = new MySqlCommand( "SELECT * " + "FROM " + dbTabla , conexion); comando.Transaction = Database.obtenerTransaccion(); try { if (Database.obtenerTransaccion() == null) { conexion.Open(); } MySqlDataReader dr = comando.ExecuteReader(); while (dr.Read()) { ListaPrecio p = new ListaPrecio(); cargarDatos(p, dr); retorno.Add(p); } dr.Close(); } catch (Exception ex) { retorno = null; LogManager.Mensaje UltimoMensaje = GestionErrores.obtenerError(ex); UltimoMensaje.cargar( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), System.Reflection.MethodBase.GetCurrentMethod().ToString(), new System.Diagnostics.StackFrame(0, true).GetFileLineNumber()); UltimoMensaje.EsError = true; UltimoMensaje.StackTrace = ex.StackTrace; LogManager.Log.log(UltimoMensaje); } finally { comando.Parameters.Clear(); if (Database.obtenerTransaccion() == null) { if (conexion.State != ConnectionState.Closed) { conexion.Close(); } } } return(retorno); }
/// <summary> /// Método encargado de conectarse con la BD para obtener los registros filtrados. /// </summary> /// <param name="itemFiltro">Items que van a utilizarse para generar la consulta (WHERE)</param> /// <param name="orden">Items que van a utilizarse para generar el orden (ORDER BY)</param> /// <param name="busquedaAnd">Indica si los terminos se conectan con AND o OR (true = AND)</param> /// <param name="inicio">Primer registro a mostrar</param> /// <param name="fin">Último registro a mostrar, o -1 para traer todos</param> /// <param name="totalRegistros">Total de registros que contiene el total de la consulta</param> /// <returns>Lista de los registros involucrados</returns> /// /// <summary> public List <ListaPrecio> obtenerFiltrado(ItemFiltro[] itemFiltro, ItemOrden[] orden, bool busquedaAnd, double inicio, double fin, out double totalRegistros) { List <ListaPrecio> ret = new List <ListaPrecio>(); UltimoMensaje = null; MySqlConnection conexion = Database.obtenerConexion(true); MySqlCommand comando = new MySqlCommand(); comando.Connection = conexion; comando.Transaction = Database.obtenerTransaccion(); totalRegistros = 0; int parameterCount = 0; string where = ""; string tipoBusqueda = " AND "; if (!busquedaAnd) { tipoBusqueda = " OR "; } Varios.armarConsultaFiltros(itemFiltro, comando, ref parameterCount, ref where, tipoBusqueda); string cadenaOrden = ""; comando.CommandText = "SELECT count(*) FROM " + dbTabla + " " + where; try { if (Database.obtenerTransaccion() == null) { conexion.Open(); } double.TryParse(comando.ExecuteScalar().ToString(), out totalRegistros); if (inicio < 0) { inicio = 0; } if (inicio > totalRegistros) { inicio = totalRegistros - 1; } if (fin > totalRegistros || fin == -1) { fin = totalRegistros; } if (inicio < 1) { inicio = 1; } if (fin < 1) { fin = 1; } cadenaOrden = Varios.armarCadenaOrden(orden, cadenaOrden, dbCampoNombre); //TODO: Hacer Paginacion double rowcount = fin - (inicio - 1); comando.CommandText = " SELECT * FROM " + dbTabla + " " + where + " " + cadenaOrden + " LIMIT " + (inicio - 1) + ", " + rowcount; MySqlDataReader dr = comando.ExecuteReader(); while (dr.Read()) { ListaPrecio bar = new ListaPrecio(); bar.Subscribe(this); cargarDatos(bar, dr); ret.Add(bar); } dr.Close(); } catch (Exception ex) { UltimoMensaje = GestionErrores.obtenerError(ex); UltimoMensaje.cargar( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), System.Reflection.MethodBase.GetCurrentMethod().ToString(), new System.Diagnostics.StackFrame(0, true).GetFileLineNumber()); UltimoMensaje.EsError = true; Notify(UltimoMensaje); } finally { comando.Parameters.Clear(); if (Database.obtenerTransaccion() == null) { if (conexion.State != ConnectionState.Closed) { conexion.Close(); } } } return(ret); }