ushtabalakh
Programmer
- Jun 4, 2007
- 132
Hi there
I have a ms sql connection that I define this way
I also have a my sql connection that I define this way:
I was wondering if it's possible to directly select all contents of a table from ms sql server and insert all the data to a table with identical structure in mysql
thanks
I have a ms sql connection that I define this way
Code:
$dsn = "Driver={SQL Server};Server=$server;Database=$database;UID=$username;PWD=$password;";
$link = odbc_connect($dsn, $username, $password);
I also have a my sql connection that I define this way:
Code:
$myLink = mysql_connect($myServer, $myUsername, myPassword);
I was wondering if it's possible to directly select all contents of a table from ms sql server and insert all the data to a table with identical structure in mysql
thanks