Knight Data Access Layer
ExecuteNonQuerySproc(String) Method
Example 




KellermanSoftware.NetDataAccessLayer Namespace > DataHelper Class > ExecuteNonQuerySproc Method : ExecuteNonQuerySproc(String) Method
The stored procedure to execute
Execute the passed stored procedure and return the number of affected records
Syntax
Public Overloads Overridable Function ExecuteNonQuerySproc( _
   ByVal storedProcedure As String _
) As Integer
Dim instance As DataHelper
Dim storedProcedure As String
Dim value As Integer
 
value = instance.ExecuteNonQuerySproc(storedProcedure)
public virtual int ExecuteNonQuerySproc( 
   string storedProcedure
)
public: virtual int ExecuteNonQuerySproc( 
   string* storedProcedure
) 
public:
virtual int ExecuteNonQuerySproc( 
   String^ storedProcedure
) 

Parameters

storedProcedure
The stored procedure to execute

Return Value

The 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();
 
string storedProcedure = "NightlyBatch";
int results = _db.ExecuteNonQuerySproc(storedProcedure);
 
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()
 
Dim storedProcedure As String = "NightlyBatch"
Dim results As Integer = _db.ExecuteNonQuerySproc(storedProcedure)
 
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

DataHelper Class
DataHelper Members
Overload List