'Declaration Public Shadows Property Connection As UniConnection
public new UniConnection Connection {get; set;}
'Declaration Public Shadows Property Connection As UniConnection
public new UniConnection Connection {get; set;}
UniConnection specified in this property will carry out all operations executed with this UniCommand.
public void CreateCommand() { string mySelectQuery = "SELECT * FROM Test.Dept ORDER BY DeptNo"; UniCommand myCommand = new UniCommand(mySelectQuery); myCommand.Connection = new UniConnection ("Provider=SQL Server;Data Source=SERVER;Initial Catalog=Northwind;User ID=sa"); myCommand.CommandType = System.Data.CommandType.Text; }
Public Sub CreateCommand() Dim mySelectQuery As String = _ "SELECT * FROM Test.Dept ORDER BY DeptNo" Dim myCommand As New UniCommand(mySelectQuery) myCommand.Connection = New UniConnection _ ("Provider=SQL Server;Data Source=SERVER;Initial Catalog=Northwind;User ID=sa") myCommand.CommandType = System.Data.CommandType.Text End Sub