You can call a stored procedure that takes string values as input and outputs a unique id in C# using the following code snippet:
main.cs1245 chars30 lines
In the above code, the SqlConnection
class is used to connect to the SQL Server instance. The SqlCommand
object is created with the stored procedure name and the SqlConnection
object.
Input parameters are added to the command object using the SqlParameter
class. An output parameter is also added to the command object using the same class, but its Direction
property is set to ParameterDirection.Output
.
Finally, the ExecuteNonQuery()
method is called on the SqlCommand
object to execute the stored procedure. After execution, the value of the output parameter is obtained using the Value
property of the outputParam
object.
gistlibby LogSnag