Add 'raw' result type

This commit is contained in:
Kijin Sung 2020-06-30 23:28:06 +09:00
parent 6e7049234e
commit ed7130f552
2 changed files with 13 additions and 9 deletions

View file

@ -465,6 +465,10 @@ class DB
{
return null;
}
if ($result_type === 'raw')
{
return $stmt;
}
$result = array();
$index = $last_index;