Initializes a ULCommand object with the specified command text, connection, and transaction.
Visual Basic
Public Sub New( _
ByVal cmdText As String, _
ByVal connection As ULConnection, _
ByVal transaction As ULTransaction _
)
C#
public ULCommand(
string cmdText,
ULConnection connection,
ULTransaction transaction
);
cmdText The text of the SQL statement or name of the table when the ULCommand.CommandType is System.Data.CommandType.TableDirect. For parameterized statements, use a question mark (?) placeholder to pass parameters.
connection The ULConnection object representing the current connection.
transaction The ULTransaction in which the ULCommand executes.