'Declaration Public Function New( _ ByVal commandText As String _ )
public MagentoCommand( string commandText )
Parameters
- commandText
- The text of the query.
'Declaration Public Function New( _ ByVal commandText As String _ )
public MagentoCommand( string commandText )
Properties | Initial value |
---|---|
CommandText | commandText |
CommandTimeout | 30 |
CommandType | System.Data.CommandType.Text |
Connection | null |
public void CreateMagentoCommand() { string mySelectQuery = "SELECT * FROM Customers"; MagentoCommand adobe commerceCommand = new MagentoCommand(mySelectQuery); adobe commerceCommand.FetchSize = 100; }
Public Sub CreateMagentoCommand() Dim mySelectQuery As String = "SELECT * FROM Customers" Dim adobe commerceCommand As New MagentoCommand(mySelectQuery) adobe commerceCommand.FetchSize = 100 End Sub