/** * standard constructor * @param string Name of the table you want to modify */ function CreateSet($table) { SaveSet::SaveSet($table, ""); }
/** * standard constructor * @param string Name of the table you want to modify * @param string Where-Condition for SQL-Clause */ function UpdateSet($table, $row_identifier) { SaveSet::SaveSet($table, $row_identifier); }
/** * standard constructor * @param string Name of the table you want to modify */ function InsertSet($table) { SaveSet::SaveSet($table, ""); }