'Declaration Public Function New( _ ByVal commandText As String, _ ByVal connection As TdConnection _ )
'Usage Dim commandText As String Dim connection As TdConnection Dim instance As New TdCommand(commandText, connection)
public TdCommand( string commandText, TdConnection connection )
public: TdCommand( String^ commandText, TdConnection^ connection )
Parameters
- commandText
- The SQL text that will be executed.
commandText
used to initialize the CommandText property. - connection
- An instance of the TdConnection class that is used to execute SQL requests.
connection
is used to initialize the Connection property.