Jump to content

programa en c# conectado a una base de datos


Recommended Posts

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

  • 2 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...