Merge pull request #1037 from tobsn/patch-9
Returning results with SHOW queries
This commit is contained in:
@@ -185,7 +185,7 @@ class Connection {
|
|||||||
// The result we return depends on the type of query executed against the
|
// The result we return depends on the type of query executed against the
|
||||||
// database. On SELECT clauses, we will return the result set, for update
|
// database. On SELECT clauses, we will return the result set, for update
|
||||||
// and deletes we will return the affected row count.
|
// and deletes we will return the affected row count.
|
||||||
if (stripos($sql, 'select') === 0)
|
if (stripos($sql, 'select') === 0 || stripos($sql, 'show') === 0)
|
||||||
{
|
{
|
||||||
return $this->fetch($statement, Config::get('database.fetch'));
|
return $this->fetch($statement, Config::get('database.fetch'));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user