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