//Busqueda
MySqlConnection CANAL;
// DataTable TABLA;
MySqlDataAdapter ORDEN;
CANAL
= new MySqlConnection
("user id=root;database=tucuman;server=localhost"); string q = "select * from t_productos where id_producto = @id_producto";
ORDEN
= new MySqlDataAdapter
(q, CANAL
); ORDEN
.SelectCommand.Parameters.Add(new MySqlParameter
("@Id_producto", MySqlDbType
.Int64)); ORDEN.SelectCommand.Parameters["@Id_producto"].Value = t_cod.Text;
DataTable TABLA
= new DataTable
(); ORDEN.Fill(TABLA);
if (TABLA.Rows.Count > 0)
{
// Cargando el datagridview
//MessageBox.Show("Se encontró un empleado", "Cuero Tucumán");
grilla.DataSource = TABLA;
Int64 id_producto;
Int64 id_proveedor;
string descripcion;
string tipo;
string color;
double ancho;
double largo;
double pc;
double pv;
string marca;
Int64 stock;
id_producto=Convert.ToInt64(TABLA.Rows[0]["Id_producto"]);
id_proveedor = Convert.ToInt64(TABLA.Rows[0]["Id_proveedor"]);
descripcion = Convert.ToString(TABLA.Rows[0]["Descripcion"]);
tipo = Convert.ToString(TABLA.Rows[0]["tipo"]);
color = Convert.ToString(TABLA.Rows[0]["color"]);
ancho = Convert.ToDouble(TABLA.Rows[0]["ancho"]);
largo = Convert.ToDouble(TABLA.Rows[0]["largo"]);
pc = Convert.ToDouble(TABLA.Rows[0]["PrecioCompra"]);
pv = Convert.ToDouble(TABLA.Rows[0]["PrecioVenta"]);
marca = Convert.ToString(TABLA.Rows[0]["Marca"]);
stock = Convert.ToInt64(TABLA.Rows[0]["stock"]);
t_des.Text = descripcion + " " + marca +" "+ tipo+" " + color + " " + ancho + "" + " x " + " " + largo + "(metros)";
t_precio.Text = Convert.ToString(pv);
}
else
{
MessageBox.Show("No hay datos que mostrar", "Cuero Tucumán");
}
CANAL.Close();
}