Represents an SQL statement or stored procedure to execute against a database.
public class OPLCommand : Component, IDbCommand, ICloneable
public OPLCommand ();
Initializes a new instance of the OPLCommand class.
public OPLCommand (string cmdText);
Initializes a new instance of the OPLCommand class with the text of the query.
public OPLCommand (string cmdText, OPLConnection connection);
Initializes a new instance of the OPLCommand class with the text of the query and an OPLConnection object.
public OPLCommand (string cmdText, OPLConnection connection,OPLTransaction txn);
Initializes a new instance of the OPLCommand class with the text of the query, an OPLConnection object and an OPLTransaction object.
public bool PassThrough {get; set;}
Allows the command text to be passed to the data source without being parsed by the Generic Provider.
Remarks
The