wallo_man01 Posted December 17, 2014 Report Share Posted December 17, 2014 Ejercicio:Modificar el código de programa para que la consulta muestre los datos del producto según sea un código de producto ingresado desde el teclado. using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient; namespace ConsoleApplication1{ class Program { static void Main(string[] args) { SqlConnection conexion = new SqlConnection(@"Server=localhost; Integrated Security=True;Database=Ventas"); conexion.Open(); String consultaSql = "select * from Productos"; SqlCommand ejecutarConsultaSql = new SqlCommand(consultaSql, conexion); SqlDataReader datosConsulta = ejecutarConsultaSql.ExecuteReader(); Console.WriteLine("Mostrando Datos de la tabla"); while (datosConsulta.Read()) { Console.WriteLine("Codigo del Producto: " + datosConsulta["codigo"].ToString()); Console.WriteLine("Nombre del Producto: " + datosConsulta["nombre"].ToString()); Console.WriteLine("Descripcion del Producto: " + datosConsulta["descripcion"].ToString()); Console.WriteLine("-------------------------------------------"); } Console.Read(); } }} Link to comment Share on other sites More sharing options...
AshWilliams Posted December 17, 2014 Report Share Posted December 17, 2014 En resumen, necesitas leer un dato por pantalla-consola(código), luego modificar tu String consultaSql(le añades el where y le concatenas lo que leiste por pantalla) y estaría listo....que son 2 lineas de código man ;) Saludos :krider: Link to comment Share on other sites More sharing options...
Ra Posted December 18, 2014 Report Share Posted December 18, 2014 Es un While y las 2 líneas que menciona Ash... Está facilito... Link to comment Share on other sites More sharing options...
AshWilliams Posted December 18, 2014 Report Share Posted December 18, 2014 El While ya lo tiene :tonto: Link to comment Share on other sites More sharing options...
Ra Posted December 19, 2014 Report Share Posted December 19, 2014 Me refiero al otro while... para leer varias veces de Console... Link to comment Share on other sites More sharing options...
AshWilliams Posted December 19, 2014 Report Share Posted December 19, 2014 Ok, aunque eso es opcional, en ningún lado dice que tiene que hacer eso abiertamente...podría leer un solo código y aún asi el ejercicio estaría ok ;) Link to comment Share on other sites More sharing options...
Ra Posted December 22, 2014 Report Share Posted December 22, 2014 See... pero como informático uno siempre debe entregar un poquito más, siempre que no requiera muchas HH... o no? Link to comment Share on other sites More sharing options...
AshWilliams Posted December 22, 2014 Report Share Posted December 22, 2014 En lo que ambos concluimos es que la tarea esta papita :tonto: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now