Nuestros investigadores estrellas agotaron sus provisiones de café, buscando diariamente por la solución, hasta que Óliver halló el resultado en Gitea y ahora la compartimos aquí.
Ejemplo: llamar al proceso almacenado c#
using(SqlConnection conn =newSqlConnection("Server=(local);DataBase=Northwind;Integrated Security=SSPI"))
conn.Open();// 1. create a command object identifying the stored procedureSqlCommand cmd =newSqlCommand("CustOrderHist", conn);// 2. set the command object so it knows to execute a stored procedure
cmd.CommandType = CommandType.StoredProcedure;// 3. add parameter to command, which will be passed to the stored procedure
cmd.Parameters.Add(newSqlParameter("@CustomerID", custId));// execute the commandusing(SqlDataReader rdr = cmd.ExecuteReader())// iterate through results, printing each to consolewhile(rdr.Read())
Console.WriteLine("Product: 0,-35 Total: 1,2",rdr["ProductName"],rdr["Total"]);
Te mostramos reseñas y calificaciones
Si tienes algún titubeo y forma de refinar nuestro artículo te evocamos realizar una reseña y con gusto lo leeremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)