Oracle 5.0 Reference Manual page 2054

Table of Contents

Advertisement

Syntax: C#
public static object ExecuteScalar(
stringconnectionString,
stringcommandText,
params MySqlParameter[]commandParameters
);
Parameters
• connectionString: Settings to use for the command
• commandText: Command text to use for the command
• commandParameters: 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
MySqlHelper
20.2.7.1.7.1.6.
MySqlHelper.UpdateDataSet
Updates the given table with data from the given DataSet
Syntax: Visual Basic
Public Shared Sub UpdateDataSet( _
ByVal connectionString As String, _
ByVal commandText As String, _
ByVal ds As DataSet, _
ByVal tablename As String _
)
Syntax: C#
public static void UpdateDataSet(
stringconnectionString,
stringcommandText,
DataSetds,
stringtablename
);
Parameters
• connectionString: Settings to use for the update
• commandText: Command text to use for the update
• ds: DataSetcontaining the new data to use in the update
• tablename: Tablename in the data set to update
See Also
MySqlHelper
20.2.7.1.8.
MySqlErrorCode
Syntax: Visual Basic
Public Enum MySqlErrorCode
Syntax: C#
Connector/Net API Reference
Class,
MySql.Data.MySqlClient
Class,
MySql.Data.MySqlClient Namespace
Enumeration
Namespace,
MySqlHelper.ExecuteScalar Overload List
Method
2034

Advertisement

Table of Contents
loading

This manual is also suitable for:

Mysql 5.0

Table of Contents