mirror of
https://github.com/dg/dibi.git
synced 2025-08-19 04:11:44 +02:00
- added dibi-field-type autodetection
- added DibiColumnInfo::getVendorInfo()
This commit is contained in:
@@ -400,10 +400,12 @@ class DibiPdoDriver extends DibiObject implements IDibiDriver
|
||||
throw new DibiDriverException('Driver does not support meta data.');
|
||||
}
|
||||
$res[] = array(
|
||||
'type' => NULL,
|
||||
'name' => $row['name'],
|
||||
'table' => $row['table'],
|
||||
'nativetype' => $row['native_type'],
|
||||
'fullname' => $row['table'] ? $row['table'] . '.' . $row['name'] : $row['name'],
|
||||
) + $row;
|
||||
'vendor' => $row,
|
||||
);
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
Reference in New Issue
Block a user