Beispiel #1
0
 public DynSql Insert(string table, FieldValList data, bool replace = false)
 {
     DRecords.Clear();
     DRecords.Add(new DInsert(table, data, replace));
     return(this);
 }
Beispiel #2
0
 public DInsert(string table, FieldValList data, bool replace)
 {
     Table        = table;
     Data         = data;
     MySQLReplace = replace;
 }