select($columns); } public static function insert($table = NULL, $set = NULL) { return db::build()->insert($table, $set); } public static function update($table = NULL, $set = NULL, $where = NULL) { return db::build()->update($table, $set, $where); } public static function delete($table = NULL, $where = NULL) { return db::build()->delete($table, $where); } public static function expr($expression) { return new Database_Expression($expression); } } // End db