I push my application(use mysql service) to cloudfoundry success.and use “vmc tunnel” access to the mysql service,and execute my sql file.
but I have a question, the mysql variable “ower_case_table_names” is default value 0. I want to set “ower_case_table_names=1”. How can I do this?
the mysql service that provide by cloudfoundry can’t be modify the settings?
need help!!
“lower_case_table_names” is a readonly variable and thus can’t be set with the “SET” command. It’s a server system variable which is set when mysqld is started. CF users do not have authority to change these system variables.