SampleClass.CallStoredProcedure Method

Sandcastle XML Comments

Sandcastle XML Comments GuideSampleClassCallStoredProcedure Method
Executes a SqlCommand with the specified storedProcName as a stored procedure initialized for updating the values of the specified row.

Namespace: XMLCommentsExamples
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public void CallStoredProcedure(
	string storedProcName,
	int row
)
Public Sub CallStoredProcedure ( 
	storedProcName As String,
	row As Integer
)
public:
void CallStoredProcedure(
	String^ storedProcName, 
	int row
)
member CallStoredProcedure : 
        storedProcName : string * 
        row : int -> unit 

Parameters

storedProcName
Type: SystemString
The stored procedure name to execute
row
Type: SystemInt32
The row to update
See Also