'Declaration Public Shared Function ExecuteDataRow( _ ByVal connectionString As String, _ ByVal commandText As String, _ ByVal ParamArray parms() As MySqlParameter _ ) As DataRow
public static DataRow ExecuteDataRow( string connectionString, string commandText, params MySqlParameter[] parms )
Parameters
- connectionString
- Settings to be used for the connection.
- commandText
- The command to execute.
- parms
- Parameters to use for the command.
Return Value
System.Data.DataRow containing the first row of the resultset.