|
|
|
|
|
by wvenable
2979 days ago
|
|
I don't understand this one: > Mixed case identifier names means that every usage of the identifier will need to be quoted in double quotes I've used quite a few RDBMS engines, including most mentioned by the author, and I've never had to quote mixed-case identifier names. They work just the same as all lower-cased names or as any other case-sensitive language. Most of the programming languages I use typically have the convention of using PascalCase for classes and public fields/properties so I prefer to use that convention for tables and columns (and then everything else for consistency). When doing operations between the application and the database, the name is exactly the same without the need for translation. Otherwise, I think it's a good list. |
|