Exemplo n.º 1
0
 public transactedCommand(XbimSqliteDB db, string sql)
 {
     _cn                 = db.GetConnection();
     _trns               = _cn.BeginTransaction();
     Command             = _cn.CreateCommand();
     Command.CommandText = sql;
 }
Exemplo n.º 2
0
 public transactedCommand(XbimSqliteDB db, string sql)
 {
     _cn = db.GetConnection();
     _trns = _cn.BeginTransaction();
     Command = _cn.CreateCommand();
     Command.CommandText = sql;
 }