Exemplo n.º 1
0
 public ReturnObj select(string db, string select, Dictionary<string, object> dic)
 {
     var query = new QueryObj(0, select, dic);
     return new transmit().run(db, query);
 }
Exemplo n.º 2
0
 public ReturnObj run(string dbfile, QueryObj query)
 {
     var queries = new List<QueryObj>();
     queries.Add(query);
     return run(dbfile, queries);
 }