1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-08 23:26:49 +02:00

- MS drivers: bool TRUE is now +1

- DibiDatabaseInfo: LONGTEXT is recognized as TEXT
This commit is contained in:
David Grudl
2009-08-13 12:08:31 +00:00
parent c2a2a4cd18
commit 8cc1d8b948
5 changed files with 5 additions and 4 deletions

View File

@@ -477,6 +477,7 @@ class DibiColumnInfo extends DibiObject
{
static $patterns = array(
'BYTEA|BLOB|BIN' => dibi::BINARY,
'TEXT|CHAR' => dibi::TEXT,
'BYTE|COUNTER|SERIAL|INT|LONG' => dibi::INTEGER,
'CURRENCY|REAL|MONEY|FLOAT|DOUBLE|DECIMAL|NUMERIC|NUMBER' => dibi::FLOAT,
'^TIME$' => dibi::TIME,