From 0eb8a42d003ac61300afbdfbcd55cabd0f0b5c1c Mon Sep 17 00:00:00 2001 From: jackbravo Date: Thu, 9 Aug 2007 19:23:44 +0000 Subject: [PATCH] Set correctly the connection attribute ATTR_QUOTE_IDENTIFIER --- manual/new/docs/en/configuration.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/new/docs/en/configuration.txt b/manual/new/docs/en/configuration.txt index 1a2d33126..81a1cba7b 100644 --- a/manual/new/docs/en/configuration.txt +++ b/manual/new/docs/en/configuration.txt @@ -74,10 +74,10 @@ Delimited identifiers are known to generally work correctly under the following * Sqlite * Firebird -When using the {{quote_identifiers}} option, all of the field identifiers will be automatically quoted in the resulting SQL statements: +When using the {{ATTR_QUOTE_IDENTIFIER}} option, all of the field identifiers will be automatically quoted in the resulting SQL statements: -$conn->setAttribute('quote_identifiers', true); +$conn->setAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER, true); will result in a SQL statement that all the field names are quoted with the backtick '`' operator (in MySQL).