Opened 17 years ago

Closed 17 years ago

#4381 closed (wontfix)

Using caps in column/table names in postgresql requires those fields to be quoted in initial sql files

Reported by: Remco Wendt <remco@…> Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

This may be nice to specifically refer to in the initial data paragraph within the 'Creating models' documentation.

Change History (1)

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

Normally you don't need to worry about the capitalisation (if you create table "Foo", you can still refer to it as "foo" in select and insert statements), so this is very rare case. Yes, it's needed sometimes in "alter table" situations, but it's still rare.

Also, this is very database-specific and something that is the documentation for each particular database. We should not be duplicating the documentation for how to write SQL for a particular database.

Note: See TracTickets for help on using tickets.
Back to Top