예제 #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;
 }