MySQLConverterTool
MySQLConverterTool copied to clipboard
A MySQL Converter Tool
While updating a legacy project, I noticed that this tool fails to convert files that store a connection in a property called `mysql` (e.g. `$this->mysql` or `$x->mysql`). This breaks lines...
If my file starts with `
Using the -d parameter with the cli.php command line interface, causes recursive conversion of nested subdirectories. (this doesn't appear to be mentioned in any documentation and can be quite a...
I have files with the encoding Windows-1252. In this case, the below error is thrown. (ASCII=xx has different numbers depending on the input file). `PHP Warning: Unexpected character in input:...
This needs an example.
``` $result = SQL_Query_exec("SELECT SUM(downloaded) AS totaldl FROM users"); while ($row = mysql_fetch_array ($result)) { $totaldownloaded = $row["totaldl"]; } ``` **edit: Solved, it is just the space between mysql_fetch_array and...
When converting I get all kind of GLOBAL keys of ___mysqli_ston. I have a mysql_ wrapper class, so for two different objects I need link connection different
I'm using the web-GUI on Apache on Linux. The tool appears to run fine, and reports e.g. 74 files = 68 okay + 6 warnings, but the (read-only) files aren't...
I have found this tool very useful in updating some of my legacy scripts. However, the script breaks with version 8. Deprecated bits. With my limited php knowledge I cannot...