ExecuteScalar Method (String, String, MySqlParameter[])

MySQL Connector/Net

Execute a single command against a MySQL database.

Namespace:  MySql.Data.MySqlClient
Assembly:  MySql.Data (in MySql.Data.dll) Version: 6.2.2.0

Syntax

C#
public static Object ExecuteScalar(
	string connectionString,
	string commandText,
	params MySqlParameter[] commandParameters
)
Visual Basic (Declaration)
Public Shared Function ExecuteScalar ( _
	connectionString As String, _
	commandText As String, _
	ParamArray commandParameters As MySqlParameter() _
) As Object
Visual C++
public:
static Object^ ExecuteScalar(
	String^ connectionString, 
	String^ commandText, 
	... array<MySqlParameter^>^ commandParameters
)

Parameters

connectionString
Type: System..::.String
Settings to use for the command
commandText
Type: System..::.String
Command text to use for the command
commandParameters
Type: array< MySql.Data.MySqlClient..::.MySqlParameter >[]()[]
Parameters to use for the command

Return Value

The first column of the first row in the result set, or a null reference if the result set is empty.

See Also