theshade310 Posted July 17, 2019 Posted July 17, 2019 hello :0sorry to interrupt, i got my whole project working on local machine using xampp on windowsall works well... then i decided to try with a remote database and got stuck on...table column name case sensitive...checked some forums and all saying have to change lower_table_name .... changing smthg like thatunfortunatly this cannot be changed by a normal userim i in front of a wall where i have to work on alllllll of my project changing and checking the case of every single query?
wolstech Posted July 17, 2019 Posted July 17, 2019 This comes from the linux / Windows divide. In Linux, upper and lowercase are considered different (TableName != tablename != Tablename), whereas in Windows, its practice to ignore case entirely (TableName == Tablename == tablename). Filenames and such are the same way. You built an app for a linux server using the Windows conventions from the sound of it. Tables are actually stored as files, so they follow the file system convention. The columns inside follow suit. See this: https://stackoverflow.com/questions/2009005/are-column-and-table-name-case-sensitive-in-mysql Sadly it's time to edit everything for consistency. I had to do the same with my first ever program as well. Any linux based host you use will have a similar requirement.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now