AshWilliams Posted April 13, 2012 Report Share Posted April 13, 2012 Quieres tu ingresar el IdCliente por consola y despues generar la consulta de acuerdo al Id que tú ingresate??Es eso?? Saludos :krider: Link to comment Share on other sites More sharing options...
alex3423 Posted April 13, 2012 Author Report Share Posted April 13, 2012 si as de cuenta consultar el idtarjeta y aparesca los datos del cliente en consola todo ejecutandolo en codigo o query en el mismo codigo que ya tengo Link to comment Share on other sites More sharing options...
AshWilliams Posted April 14, 2012 Report Share Posted April 14, 2012 Prueba con esto: Console.WriteLine("Ingrese Id Clientet:"); // Prompt string cliente = Console.ReadLine(); ConexionBD administradorBD = new ConexionBD("Data Source=.\\SQLEXPRESS;Initial Catalog=CajeroAutomatico;User ID=nuevo;Password=user123"); List<List<string>> resultado = administradorBD.ejecutaQuery("SELECT Cliente.Clientes.Nombre,Cliente.Clientes.Apellidos,Cajero.Tarjetas.IdTarjeta,Cajero.Consultas.SaldoDisponible FROM Cliente.Clientes,Cajero.Consultas,Cajero.Tarjetas where Cajero.Tarjetas.IdTarjeta = Cajero.Consultas.IdTarjeta and Cajero.Tarjetas.IdTarjeta = Cliente.Clientes.IdCliente and Cliente.Clientes.IdClient = " + cliente); Console.Write(Utilerias.fijaTamanio(resultado[3][2], 15) + " | "); for (int i = 0; i < resultado.Count; i++) { for (int j = 0; j < resultado[i].Count; j++) { Console.Write(Utilerias.fijaTamanio(resultado[i][j], 15) + " | "); } Console.WriteLine(""); } Console.ReadKey(); No lo he testeado pero debería funcionar, o con unas pequeñas modificaciones....saludos :krider: Link to comment Share on other sites More sharing options...
alex3423 Posted April 24, 2012 Author Report Share Posted April 24, 2012 gracias por tu ayuda compa ya me salio y logre entregarlo se agrdece en vdd saludos Link to comment Share on other sites More sharing options...
AshWilliams Posted April 24, 2012 Report Share Posted April 24, 2012 De nada cumpa...siga visitando el foro ;) Solucionado y procedo al cierre. Saludos :krider: 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