prepare($sql); $result = $query->execute($bindings); // --------------------------------------------------- // For SELECT statements, return the results in an // array of stdClasses. // // For UPDATE and DELETE statements, return the number // or rows affected by the query. // // For everything else, return a boolean. // --------------------------------------------------- if (strpos(Str::upper($sql), 'SELECT') === 0) { return $query->fetchAll(\PDO::FETCH_CLASS, 'stdClass'); } elseif (strpos(Str::upper($sql), 'UPDATE') === 0 or strpos(Str::upper($sql), 'DELETE') === 0) { return $query->rowCount(); } else { return $result; } } /** * Begin a fluent query against a table. * * @param string $table * @param string $connection * @return Query */ public static function table($table, $connection = null) { return new DB\Query($table, $connection); } }