Windows MySQL case sensitive -


i have problem. i'm using windows @ work develop server linux. work database queries.

now, type table name in wrong caps (like, in lowercase if first 3 characters uppercase). how can turn case sensitivity on windows on?

i have tried putting

lower_case_table_names=1 

after

interactive-timeout 

and i've tried putting

lower_case_table_names=0 

after

interactive-timeout 

none of them work though , script still works fine on windows bug in linux.

its due linux file system. every table created in database create corresponding file on linux system. linux file system case sensitive know. in sql query table name needs case sensitive linux.

already answered here :

are table names in mysql case sensitive?

in mysql, databases correspond directories within data directory. each table within database corresponds @ least 1 file within database directory. consequently, case sensitivity of underlying operating system plays part in case sensitivity of database , table names.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -