Knight Data Access Layer
ExecuteNonQuerySproc(String,Dictionary<String,Object>) Method
Example 




KellermanSoftware.NetDataAccessLayer Namespace > IDataHelper Interface > ExecuteNonQuerySproc Method : ExecuteNonQuerySproc(String,Dictionary<String,Object>) Method
The stored procedure to execute
The parameters for the stored procedure
Execute the passed stored procedure and return the number of affected records
Syntax
Overloads Function ExecuteNonQuerySproc( _
   ByVal storedProcedure As String, _
   ByVal parameters As Dictionary(Of String,Object) _
) As Integer
Dim instance As IDataHelper
Dim storedProcedure As String
Dim parameters As Dictionary(Of String,Object)
Dim value As Integer
 
value = instance.ExecuteNonQuerySproc(storedProcedure, parameters)
int ExecuteNonQuerySproc( 
   string storedProcedure,
   Dictionary<string,object> parameters
)
int ExecuteNonQuerySproc( 
   string* storedProcedure,
   Dictionary<string*,Object*>* parameters
) 
int ExecuteNonQuerySproc( 
   String^ storedProcedure,
   Dictionary<String^,Object^>^ parameters
) 

Parameters

storedProcedure
The stored procedure to execute
parameters
The parameters for the stored procedure

Return Value

Number of affected records
Example
//Get the current thread static safe instance of the helper
SqlServerProvider provider = new SqlServerProvider();
 
//Specify User Name and License Key from the receipt, leave blank for trial mode
//db.UserName = "John Smith 1234";
//db.LicenseKey = "asdfl219==";
 
//Log to the console
db.EnableLogging();
 
//Open the database connection
db.OpenConnection();
 
//Parameters
Dictionary<string, object> parameters = new Dictionary<string, object>();
parameters.Add("ExpirationType", "Credit Card");
 
string storedProcedure = "NightlyBatch";
 
int results = _db.ExecuteNonQuerySproc(storedProcedure, parameters);
 
db.CloseConnection();
'Get the current thread static safe instance of the helper
Dim provider As New SqlServerProvider()
 
'Specify User Name and License Key from the receipt, leave blank for trial mode
'db.UserName = "John Smith 1234"
'db.LicenseKey = "asdfl219=="
 
'Log to the console
db.EnableLogging()
 
'Open the database connection
db.OpenConnection()
 
'Parameters
Dim parameters As New Dictionary(Of String, Object)()
parameters.Add("ExpirationType", "Credit Card")
 
Dim storedProcedure As String = "NightlyBatch"
 
Dim results As Integer = _db.ExecuteNonQuerySproc(storedProcedure, parameters)
 
db.CloseConnection()
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IDataHelper Interface
IDataHelper Members
Overload List