summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-11-02 13:01:11 +0000
committerJamie Matthews <[email protected]>2010-11-02 13:01:11 +0000
commit168c48103e964553156b02aac5db00e396a0aad7 (patch)
treed52b249f90861aee385a55614a9aff4ca13da075 /README.markdown
parente86cd738287a8e36ed1ecbcb9197fa22b851f271 (diff)
Add support for specifying (and autodetecting) the character used to quote database identifiers. See issue #6
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown
index 1144a43..2c77fa8 100644
--- a/README.markdown
+++ b/README.markdown
@@ -347,6 +347,12 @@ This can be used to set the `PDO::ATTR_ERRMODE` setting on the database connecti
The default setting is `PDO::ERRMODE_EXCEPTION`. For full details of the error modes available, see [the PDO documentation](http://uk2.php.net/manual/en/pdo.setattribute.php).
+#### Identifier quote character ####
+
+Setting: `identifier_quote_character`
+
+Set the character used to quote identifiers (eg table name, column name). If this is not set, it will be autodetected based on the database driver being used by PDO.
+
#### ID Column ####
By default, the ORM assumes that all your tables have a primary key column called `id`. There are two ways to override this: for all tables in the database, or on a per-table basis.