Ma procédure stockée a un paramètre de sortie:
@ID INT OUT
Comment puis-je récupérer cela en utilisant ado.net?
using (SqlConnection conn = new SqlConnection(...))
{
SqlCommand cmd = new SqlCommand("sproc", conn);
cmd.CommandType = CommandType.StoredProcedure;
// add parameters
conn.Open();
// *** read output parameter here, how?
conn.Close();
}
conn.Close()
car c'est à l'intérieur d'unusing
bloc