MySQL Forums
Forum List  »  Newbie

Re: References to tables being case sensitive
Posted by: Jonathan Stephens
Date: March 13, 2005 01:55AM

Windows, unlike nearly every other operating system, ignores case. In order to maximise portability across operating systems and programming languages, the best practise is to observe case-sensitivity for all identifiers in your MySQL applications, but not to depend on it to differentiate between them.

In other words, if you name a table ¨Report¨, always refer to it as ¨Report¨ and not as ¨report¨ or ¨REPORT¨. Don´t try to name any other table ¨report¨ or ¨REPORT¨.

More info: http://dev.mysql.com/doc/mysql/en/name-case-sensitivity.html

Jon Stephens
MySQL Documentation Team @ Oracle

MySQL Dev Zone
MySQL Server Documentation
Oracle

Options: ReplyQuote


Subject
Written By
Posted
Re: References to tables being case sensitive
March 13, 2005 01:55AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.