Share via


SfcTSqlExecutor.ExecuteScalar Method

Executes the query, and returns the first column of the first row in the result set returned by the query. Additional columns or rows are ignored. Do not reference this member directly in your code. It supports the SQL Server infrastructure.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

'Declaration
Public Shared Function ExecuteScalar ( _
    connection As ServerConnection, _
    script As String _
) As Object
'Usage
Dim connection As ServerConnection
Dim script As String
Dim returnValue As Object

returnValue = SfcTSqlExecutor.ExecuteScalar(connection, _
    script)
public static Object ExecuteScalar(
    ServerConnection connection,
    string script
)
public:
static Object^ ExecuteScalar(
    ServerConnection^ connection, 
    String^ script
)
static member ExecuteScalar : 
        connection:ServerConnection * 
        script:string -> Object 
public static function ExecuteScalar(
    connection : ServerConnection, 
    script : String
) : Object

Parameters

Return Value

Type: System.Object
The first column of the first row in the result set, or a null reference if the result set is empty. Returns a maximum of 2033 characters.