예제 #1
0
 public SQLSelect(string strTableName, SQLCondition objWhereCondition)
     : this()
 {
     this.Tables.Add(strTableName);
     this.Where.Add(objWhereCondition);
 }
예제 #2
0
 public SQLDelete(string strTableName, SQLCondition objWhereCondition)
 {
     this.TableName = strTableName;
     this.Where.Add(objWhereCondition);
 }
예제 #3
0
 public SQLUpdate(string strTableName, SQLFieldValue objValue, SQLCondition objWhere)
 {
     this.TableName = strTableName;
     this.Fields.Add(objValue);
     this.Where.Add(objWhere);
 }