Knight Data Access Layer
ExecuteScalarSproc(String,IEnumerable<Object>) Method
Example 




KellermanSoftware.NetDataAccessLayer Namespace > IDataHelper Interface > ExecuteScalarSproc Method : ExecuteScalarSproc(String,IEnumerable<Object>) Method
The scalar stored procedure to execute
The parameters for the stored procedure
Execute the passed stored procedure and return the first column of the first row
Syntax
Overloads Function ExecuteScalarSproc( _
   ByVal storedProcedure As String, _
   ByVal nameValueParameters As IEnumerable(Of Object) _
) As Object
Dim instance As IDataHelper
Dim storedProcedure As String
Dim nameValueParameters As IEnumerable(Of Object)
Dim value As Object
 
value = instance.ExecuteScalarSproc(storedProcedure, nameValueParameters)

Parameters

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

Return Value

The value from the stored procedure
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 = "CalculateCustomerValue";
 
decimal results = Convert.ToDecimal(db.ExecuteScalarSproc(storedProcedure,new object[] {"Years", "2" }));
 
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 = "CalculateCustomerValue"
 
Dim results As Decimal = Convert.ToDecimal(db.ExecuteScalarSproc(storedProcedure,new object[] {"Years", "2" }))
 
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