mirror of
https://github.com/dg/dibi.git
synced 2025-08-20 12:51:40 +02:00
* fixed identifier delimitation in DibiPostgreDriver (table.col -> table."col")
* better SQL syntax highlighting * removed addslashes from DibiPostgreDriver
This commit is contained in:
@@ -320,8 +320,7 @@ class DibiMySqliDriver extends NObject implements DibiDriverInterface
|
||||
$meta = array();
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
// items 'name' and 'table' are required
|
||||
$info = (array) mysqli_fetch_field_direct($this->resultset, $i);
|
||||
$meta[] = $info;
|
||||
$meta[] = (array) mysqli_fetch_field_direct($this->resultset, $i);
|
||||
}
|
||||
return $meta;
|
||||
}
|
||||
|
Reference in New Issue
Block a user