在ubuntu下安装mysql,默认是表明区分大小写的,导致在代码中写原生sql的话,还得注意表明大小写,在这里我们可以设置mysql忽略大小写,提高程序开发效率。
step1:vi/etc/MySQL/my.cnf
step2:添加
lower_case_table_names=1
step3:重启mysql
/etc/init.d/mysql restart
step4:查看
show variables like '%case_table%';
在ubuntu下安装mysql,默认是表明区分大小写的,导致在代码中写原生sql的话,还得注意表明大小写,在这里我们可以设置mysql忽略大小写,提高程序开发效率。
step1:vi/etc/MySQL/my.cnf
step2:添加
lower_case_table_names=1
step3:重启mysql
/etc/init.d/mysql restart
step4:查看
show variables like '%case_table%';