diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-05-08 21:29:07 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-05-08 21:29:07 +0000 |
commit | 46b7c9dc57a38d5b9e44a4723dad2ad8ec57baca (patch) | |
tree | 1f42fd9228394caa9e52f8527f698d2dad53dd2b /lib/sqlalchemy | |
parent | db4449455ff834b3e12a966c641163564b0bcd1e (diff) | |
download | sqlalchemy-46b7c9dc57a38d5b9e44a4723dad2ad8ec57baca.tar.gz |
doc update on quote
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r-- | lib/sqlalchemy/schema.py | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 9fc1ceec5..9a4bf4109 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -183,14 +183,14 @@ class Table(SchemaItem, expression.TableClause): be used in its place. quote - Defaults to False: indicates that the Table identifier must be - properly escaped and quoted before being sent to the - database. This flag overrides all other quoting behavior. + When True, indicates that the Table identifier must be quoted. + This flag does *not* disable quoting; for case-insensitive names, + use an all lower case identifier. quote_schema - Defaults to False: indicates that the Namespace identifier must be - properly escaped and quoted before being sent to the - database. This flag overrides all other quoting behavior. + When True, indicates that the schema identifier must be quoted. + This flag does *not* disable quoting; for case-insensitive names, + use an all lower case identifier. """ super(Table, self).__init__(name) @@ -488,10 +488,9 @@ class Column(SchemaItem, expression._ColumnClause): or subtype of Integer. quote - Defaults to False: indicates that the Column identifier must be - properly escaped and quoted before being sent to the database. - This flag should normally not be required as dialects can - auto-detect conditions where quoting is required. + When True, indicates that the Column identifier must be quoted. + This flag does *not* disable quoting; for case-insensitive names, + use an all lower case identifier. """ name = kwargs.pop('name', None) |