Home > Database > Mysql Tutorial > body text

Linux上不区分MySQL表名大小写

WBOY
Release: 2016-06-07 16:58:40
Original
910 people have browsed it

下载了一个php程序,在Windows上运行很正常,可是在Linux上运行的时候提示表不存在。研究了一下:原来是在Windows上MySQL市不区分

下载了一个php程序,在Windows上运行很正常,可是在Linux上运行的时候提示表不存在。

研究了一下:原来是在Windows上MySQL市不区分表名大小写的,所以很正常。但是在Linux上由于MySQL默认是却分大小写的,,所以程序会出错。

最简单的方法当然是修改Linux上MySQL的配置文件,修改为忽略大小写就可以了。

修改办法是:

vi /etc/my.cnf
在[mysqld]下加入一行:

lower_case_table_names=1
这句话就表示不区分大小写表名。

重启一下MySQL服务再试试看看。

这是最简便的修改办法,但是这种方法也许不是很科学,建议还是写程序的时候就详细规范一下,注意区分大小写。

对!规范才是王道。

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template