Commit 0eb8a42d authored by jackbravo's avatar jackbravo

Set correctly the connection attribute ATTR_QUOTE_IDENTIFIER

parent 9a4f9e27
......@@ -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:
<code type="php">
$conn->setAttribute('quote_identifiers', true);
$conn->setAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER, true);
</code>
will result in a SQL statement that all the field names are quoted with the backtick '`' operator (in MySQL).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment