Migration from Oracle to SQL Server

A

Anonymous

Guest
You can create your own SQL function or Class, and just change that when you migrate so you don't have to go through your entire scripts and change the function calls.


ie..


function do_sql($string) {
mssql_query($string); // you just change this line when needed..
}
 
Back
Top