queryRaw() will now be officially supported, returns mysqli_result instead of array of assoc

arrays
This commit is contained in:
Sergey Tsalkov
2011-09-23 15:57:36 -07:00
parent f09308a3f7
commit 164c7157a6
2 changed files with 7 additions and 0 deletions

View File

@@ -357,6 +357,7 @@ class DB
}
public static function queryNull() { $args = func_get_args(); return DB::prependCall('DB::queryHelper', $args, 'null'); }
public static function queryRaw() { $args = func_get_args(); return DB::prependCall('DB::queryHelper', $args, 'buffered'); }
public static function queryBuf() { $args = func_get_args(); return DB::prependCall('DB::queryHelper', $args, 'buffered'); }
public static function queryUnbuf() { $args = func_get_args(); return DB::prependCall('DB::queryHelper', $args, 'unbuffered'); }