I need to transfer InterBase to MySQL.
I didn't use advanced features in InterBase. So I think the transfer will be straight forward.
The only problem is that ibase_fetch_object,
$result->FULL_NAME;
the field name is upper case.
All I have to do is using UPPER CASE field name to create MySQL new database.
So when I call mysql_fetch_object
I can still use the upper case field name
$result->FULL_NAME;
In brief words, to transfer from InterBase to MySQL I can mass replace the "ibase_query" with "mysql_query", and "ibase_fetch_object" with "mysql_fetch_object". Most of the codes will be fine.
I don't have to change the "$result->FULL_NAME" to "$result->full_name" If I use the upper case field names in MySQL.