diff options
author | godzilla80@gmx.net <> | 2009-11-08 10:56:03 +0000 |
---|---|---|
committer | godzilla80@gmx.net <> | 2009-11-08 10:56:03 +0000 |
commit | 6da632f4b383fac1373ce308e80503c7603f1fc7 (patch) | |
tree | 7df1902765f60c70e6a622522dab268b808f86b3 /framework | |
parent | d497d076264c80a934d5837deda9fda727691663 (diff) |
Fixed Issue #191 - Bad parsing of MySQL ENUM type column
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Data/Common/Mysql/TMysqlMetaData.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/Common/Mysql/TMysqlMetaData.php b/framework/Data/Common/Mysql/TMysqlMetaData.php index ae552cf3..a3b324d9 100644 --- a/framework/Data/Common/Mysql/TMysqlMetaData.php +++ b/framework/Data/Common/Mysql/TMysqlMetaData.php @@ -110,7 +110,7 @@ class TMysqlMetaData extends TDbMetaData //find SET/ENUM values
if($this->isEnumSetType($info['DbType']))
- $info['DbTypeValues'] = preg_split('/\s*,\s*|\s+/', preg_replace('/\'|"/', '', $match[1]));
+ $info['DbTypeValues'] = preg_split("/[',]/S", $match[1], -1, PREG_SPLIT_NO_EMPTY);
//find column size, precision and scale
$pscale = array();
|