1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-13 09:34:30 +02:00

multi INSERT or REPLACE command

This commit is contained in:
David Grudl
2007-05-30 00:01:10 +00:00
parent 89a7c8ac73
commit e33689a5a1
7 changed files with 45 additions and 25 deletions

View File

@@ -298,7 +298,7 @@ class DibiMySqlResult extends DibiResult
else {
$info['type'] = isset($types[$native]) ? $types[$native] : dibi::FIELD_UNKNOWN;
// if ($info['type'] == dibi::FIELD_TEXT && $info['length'] > 255)
// if ($info['type'] === dibi::FIELD_TEXT && $info['length'] > 255)
// $info['type'] = dibi::FIELD_LONG_TEXT;
}

View File

@@ -268,7 +268,7 @@ class DibiMySqliResult extends DibiResult
$info['type'] = dibi::FIELD_COUNTER;
else {
$info['type'] = isset($types[$native]) ? $types[$native] : dibi::FIELD_UNKNOWN;
// if ($info['type'] == dibi::FIELD_TEXT && $info['length'] > 255)
// if ($info['type'] === dibi::FIELD_TEXT && $info['length'] > 255)
// $info['type'] = dibi::FIELD_LONG_TEXT;
}