PHP imports MSSQL data into MYSQL instance_PHP tutorial

WBOY
Release: 2016-07-13 17:06:43
Original
936 people have browsed it

Recently I need to convert a previous ASP website into PHP, but PHP is with mysql and my asp is with mssql. As a result, I need to import the mssql data into the mysql database. I wrote an example myself below and copied it. An example is not bad.

Example 1

The code is as follows
 代码如下 复制代码

//国内的PNR码连接
$hostname="127.0.0.1"; //MSSQL服务器的IP地址 或 服务器的名字
$dbuser="sa"; //MSSQL服务器的帐号
$dbpasswd="sa"; //MSSQL服务器的密码
$dbname="aa"; //数据库的名字

$conn = mssql_connect($hostname,$dbuser,$dbpasswd); //连接MSSQL
mssql_select_db($dbname); /*连接要访问的数据库 这里也可以写做 $db=mssql_select_db($dbname,$conn); */
$sql =
"select * from Sheet1$"; //sql语句
$data = mssql_query($sql); //把查询的值集合在变量$data
while($Arr = mssql_fetch_object($data)) //循环初始的集合$Arr

{
$Airport=$Arr->Airport;
$citycode=$Arr->citycode;
$Chinesecityname=$Arr->Chinesecityname;
$Chinesecityjp=$Arr->Chinesecityjp;
$english=$Arr->english;
$countrycode=$Arr->countrycode;
$countryfullname=$Arr->countryfullname;
$Chauname=$Arr->Chauname;
//echo $code;
$conn=mysql_connect("localhost","root","123456");//连接数据库的帐号和端口号
mysql_query("SET NAMES ‘GBK’",$conn);
mysql_select_db("taojipiao2009",$conn);// 加载数据库
//$sql="update internationcode set jp=’$aa’ where Code=’$Code’";
$sql="insert into internationcode(Airport,citycode,Chinesecityname,Chinesecityjp,english,countrycode,countryfullname,Chauname) values(‘$Airport‘,’$citycode‘,’$Chinesecityname‘,’$Chinesecityjp‘,’$english‘,’$countrycode‘,’$countryfullname‘,’$Chauname‘)";
//echo $sql."
";
$result=mysql_query($sql);
}
//mssql_close($conn); //关闭数据库

?>

Copy code

//Domestic PNR code connection
$hostname="127.0.0.1"; //MSSQL server IP address or server name
$dbuser="sa"; //MSSQL server account
$dbpasswd="sa"; //MSSQL server password
$dbname="aa"; //Database name

$conn = mssql_connect($hostname,$dbuser,$dbpasswd); //Connect to MSSQL
mssql_select_db($dbname); /*Connect to the database to be accessed. This can also be written as $db=mssql_select_db($dbname,$conn); */
$sql =
"select * from Sheet1$"; //sql statement
$data = mssql_query($sql); //Collect the query value in the variable $data
while($Arr = mssql_fetch_object($data)) //Loop the initial collection $Arr

代码如下 复制代码

$mssql_link = mssql_connect($db_host,$db_msuser,$db_mspass) or
die("mssql数据库连接失败");

mssql_select_db($db_msname,$mssql_link);

$mysql_link = mysql_connect($db_myhost,$db_myuser,$db_mypass) or die("mysql数据库连接失败".mysql_error());

mysql_select_db($db_myname,$mysql_link);

$msquery = mssql_query("select top 1 * from buyok_produc",$mssql_link);

$vars = ”;
$vals = ”;
$cols = ”;

while ($row = mssql_fetch_array($msquery,$mssql_link)){
$vals = ”;
foreach($row as $key=>$values){
        $cols .= ($cols == ” ? $key : ‘,‘.$key);
        $vals .= ($vals == ” ? ‘’‘.$values.‘’,‘ : ‘’‘.$values.‘’,‘);
        //echo $vals;
    }
    $vars .= ($vars == ” ? ‘(‘.$vals.‘)‘ : ‘,(‘.$vals.‘)‘);
}

$sql =
"insert into `buyok_produc` ($cols) values $vars";

echo $sql;

$aa=mysql_query($sql, $mysql_link);

if ($aa){
    echo "successfully";
}else{
    echo "failed";
}

?>

{
$Airport=$Arr->Airport;
$citycode=$Arr->citycode;
$Chinesecityname=$Arr->Chinesecityname;
$Chinesecityjp=$Arr->Chinesecityjp;
$english=$Arr->english;
$countrycode=$Arr->countrycode;
$countryfullname=$Arr->countryfullname;
$Chauname=$Arr->Chauname;
//echo $code;
$conn=mysql_connect("localhost","root","123456");//Account and port number to connect to the database
mysql_query("SET NAMES ‘GBK’",$conn);
mysql_select_db("taojipiao2009",$conn);//Load database
//$sql="update internationcode set jp=’$aa’ where Code=’$Code’";
$sql="insert into internationcode(Airport,citycode,Chinesecityname,Chinesecityjp,english,countrycode,countryfullname,Chauname) values('$Airport','$citycode','$Chinesecityname','$Chinesecityjp','$english' ,'$countrycode','$countryfullname','$Chauname')";
//echo $sql."
";
$result=mysql_query($sql);
}
//mssql_close($conn); //Close the database ?> Reference code 2,
The code is as follows Copy code
<🎜>$mssql_link = mssql_connect($db_host,$db_msuser,$db_mspass) or
die("mssql database connection failed");<🎜> <🎜>mssql_select_db($db_msname,$mssql_link);<🎜> <🎜>$mysql_link = mysql_connect($db_myhost,$db_myuser,$db_mypass) or die("mysql database connection failed".mysql_error());<🎜> <🎜>mysql_select_db($db_myname,$mysql_link);<🎜> <🎜>$msquery = mssql_query("select top 1 * from buyok_produc",$mssql_link);<🎜> <🎜>$vars = ”;
$vals = ”;
$cols = ”;<🎜> <🎜>while ($row = mssql_fetch_array($msquery,$mssql_link)){
$vals = ”;
foreach($row as $key=>$values){
$cols .= ($cols == ” ? $key : ‘,‘.$key);
           $vals .= ($vals == ” ? ‘’‘.$values.‘’,‘ : ‘’‘.$values.‘’,‘);
               //echo $vals;
}
$vars .= ($vars == ” ? ‘(‘.$vals.‘)‘ : ‘,(‘.$vals.‘)‘);
} $sql =
"insert into `buyok_produc` ($cols) values ​​$vars"; echo $sql; $aa=mysql_query($sql, $mysql_link); if ($aa){
echo "successfully";
}else{
echo "failed";
} ?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630675.htmlTechArticleRecently I need to convert a previous asp website to php, but php is with mysql and my asp is with mssql Yes, the result is that the mssql data needs to be imported into the mysql database. I wrote one myself below...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!