public SQLSelect(string strTableName, SQLCondition objWhereCondition) : this() { this.Tables.Add(strTableName); this.Where.Add(objWhereCondition); }
public SQLDelete(string strTableName, SQLCondition objWhereCondition) { this.TableName = strTableName; this.Where.Add(objWhereCondition); }
public SQLUpdate(string strTableName, SQLFieldValue objValue, SQLCondition objWhere) { this.TableName = strTableName; this.Fields.Add(objValue); this.Where.Add(objWhere); }