My stream of consciousness being a programmer.

Friday, February 17, 2012

Make case sensitive table names in MySQL database

Image result for mysql logo

Are table names in mysql case sensitive?  The answer is no.

When you create a tabled called “User” or “USER”,  both are considered as “user” which means it’s not case sensitive.

How can we force mysql to do this ? it’s a just matter of minor change in mysql ini file.

Below given are the steps you need to follow in order to force this behavior.

1-    Open the my.ini file located inside xampp\mysql\bin folder
2-    Add this system variable to the bottom of my.ini, lower_case_table_names=2
3-    restart mysql

Reference: http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html

17 Feb 2012

Related Posts:

  • MYSQL Table locking his topic can be new to some but its very much important when working with concurrent access to a particular table row (record). for example lets s… Read More
  • No CHECK Constraint in MYSQL It looks like MYSQL doesn’t really validate for check constraint. I checked for mysql manual and noticed its true. Copied the following section fr… Read More
  • CRUD application with Yii framework. Please note that, this is a very minimal sample application done for a USER model using yii framework. How to run, 1 – Please download the attach… Read More
  • PHP Incrementing & Decrementing Operators What is the meaning of ++ increment operator and - – decrement operator and how can we use it ? Below is a small explanation on what it does, ++… Read More
  • PHP has no FINALLY I am so curious why PHP doesn’t have FINALLY block along with normal TRY CATCH blocks. It’s very much necessary and will let us stay away from code … Read More

0 comments:

Post a Comment

Popular Posts

Powered by Blogger.