开发者

MySQL 5 in MySQL 4 compatible mode for one database?

开发者 https://www.devze.com 2022-12-26 20:39 出处:网络
In a recent project, I have to maintain some PHP code. I set up a development server and installed MySQL, Apache, PHP, ..etc.

In a recent project, I have to maintain some PHP code. I set up a development server and installed MySQL, Apache, PHP, ..etc.

The program is terminated with an error:

  • Unknown column _ _ _ in 'on clause' Cannot select ....

Google shows that it's a change of syntax around JOINs, parentheses are needed.

As you may imagine, fixing all that PHP SQL strings will be the last resort. >_<

Is is possible to config MySQL 5 to run at MySQL 4 compatible mode?

开发者_运维知识库

Or even better, for only one database? Thanks!

p.s. Since we are going to host the code on a new production server (MySQL 5 on a CentOS box), the chance to install MySQL 4 on the new server might be slim.


Would it be possible to run 2 versions of mysql on the server in question?

http://dev.mysql.com/doc/refman/5.0/en/multiple-servers.html

version 4 for this projects and version 5 for everything else.

0

精彩评论

暂无评论...
验证码 换一张
取 消