busqueda de productos
This commit is contained in:
@@ -1483,6 +1483,31 @@ namespace compabetov2.database
|
||||
}
|
||||
}
|
||||
|
||||
public static SQLiteDataReader conseguirProductosFiltradosDAO(string nombreProducto)
|
||||
{
|
||||
SQLiteDataReader reader = null;
|
||||
var db_conexion = new Conexion();
|
||||
try
|
||||
{
|
||||
SQLiteConnection conexion = db_conexion.get_connection();
|
||||
|
||||
conexion.Open();
|
||||
|
||||
string sql = "SELECT * FROM Producto WHERE nombre LIKE @nombre";
|
||||
SQLiteCommand command = new SQLiteCommand(sql, conexion);
|
||||
command.Parameters.AddWithValue("@nombre", $"%{nombreProducto}%");
|
||||
reader = command.ExecuteReader();
|
||||
|
||||
return reader;
|
||||
|
||||
}
|
||||
catch (SQLiteException ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message);
|
||||
return reader;
|
||||
}
|
||||
}
|
||||
|
||||
private static void crearDB()
|
||||
{
|
||||
var db_conexion = new Conexion();
|
||||
|
||||
@@ -439,5 +439,26 @@ namespace compabetov2.database
|
||||
|
||||
return resumen;
|
||||
}
|
||||
|
||||
public static List<Producto> conseguirProductosFiltrados(string nombreProducto) {
|
||||
List<Producto> productos = new List<Producto>();
|
||||
SQLiteDataReader reader = DAO.conseguirProductosFiltradosDAO(nombreProducto);
|
||||
|
||||
while (reader.Read())
|
||||
{
|
||||
Producto producto = new Producto(
|
||||
int.Parse(reader["idproducto"].ToString()),
|
||||
reader["nombre"].ToString(),
|
||||
reader["descripcion"].ToString(),
|
||||
decimal.Parse(reader["precio"].ToString()),
|
||||
reader["img"].ToString(),
|
||||
int.Parse(reader["stock"].ToString())
|
||||
);
|
||||
|
||||
productos.Add(producto);
|
||||
}
|
||||
|
||||
return productos;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user