示例#1
0
 public DeveelSqlCommand(DeveelSqlConnection connection)
     : this(connection, null)
 {
 }
示例#2
0
 internal DeveelSqlTransaction(DeveelSqlConnection connection)
 {
     this.connection = connection;
 }
示例#3
0
 public DeveelSqlCommand(DeveelSqlConnection connection, string text)
     : this()
 {
     Connection = connection;
     CommandText = text;
 }