ExecuteScalar-Methode
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. Verweisen Sie nicht direkt im Code auf dieses Element. Unterstützt die SQL Server-Infrastruktur.
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
Parameter
- connection
Typ: Microsoft.SqlServer.Management.Common. . :: . .ServerConnection
The server connection.
- script
Typ: System. . :: . .String
A string value of the script.
Rückgabewert
Typ: 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.