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