mysql4to5 - converts MySQL4-queries to MySQL5-compatible-queries
This is a perl-script; you start it from the terminal like so:
perl mysql4to5.pl
Remember to put its location in your $PATH
if you use it regularly.
This scripts encloses, between round brackets, all SQL-statements
that don't enclose the tables (and their aliases, joins etc) listed
between FROM .. WHERE
and UPDATE .. SET
It doesn't matter if the SQL statements have been written out over multiple lines of code or not.
More specifically, this script does the following:
-
globs (recursively, from path of execution) for *.sql files
-
updates (via regex) SQL-statements found in each file
-
leaves original .sql files untouched
-
creates a .sql.new file for those files that needed updating
Sample .sql files can be found in the /sample
directory
Before:
select a.fone, b.fone, b.ftwo from atable a, btable b
where a.fone=b.fone
After:
select a.fone, b.fone, b.ftwo from (atable a, btable b)
where a.fone=b.fone
Before:
update atable a, btable b
set a.fone="else", b.fone="else" where a.fone="something"
After:
update (atable a, btable b)
set a.fone="else", b.fone="else" where a.fone="something"
Chris Vertonghen <chrisv(at)cpan(dot)org>
This is quick and dirty code used only by the author for a singular transformation of legacy code. Please review before applying to your own queries. Use at your own risk.
Copyright (C) 2014 Chris Vertonghen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.