1
0
mirror of https://github.com/dg/dibi.git synced 2025-10-20 01:06:25 +02:00

substitutes moved from DibiDriver to Dibi

changed "comments" behavior in DibiParser
This commit is contained in:
David Grudl
2006-09-23 06:34:44 +00:00
parent da70be27a8
commit da608c2db2
14 changed files with 113 additions and 201 deletions

View File

@@ -166,7 +166,7 @@ class DibiMySqlDriver extends DibiDriver {
public function quoteName($value)
{
return '`' . strtr( $this->applySubsts($value), array('.' => '`.`')) . '`';
return '`' . str_replace('.', '`.`', $value) . '`';
}
@@ -334,9 +334,3 @@ class DibiMySqlResult extends DibiResult
} // class DibiMySqlResult
?>