我想将新行从本地表插入到远程表,我已经为它制作了一个 php 脚本,但它不起作用。
远程和本地 - 数据库、表和字段相同。
我正在这样做
//connection
$remote_hostname='xxx.xxx.xxx.xxx:3306';
$hostname='localhost';
$username = 'username';
$password = 'password';
$remote_connection = mysql_connect($remote_hostname, $username, $password);
$connection = mysql_connect($hostname, $username, $password);
$tablename="pc_games";
$database = 'games';
// some row count here $remoterows
$local_query = "SELECT * FROM $tablename LIMIT 100 OFFSET $remoterows";
$local_result = mysql_query($local_query, $connection) or trigger_error(mysql_error());
while($list=mysql_fetch_array($local_result))
{
$remote_update=mysql_query("INSERT INTO $tablename SELECT * from $tablename");
$remote_update_result = mysql_query($remote_update, $remote_connection) or trigger_error(mysql_error());
}
这不起作用并显示错误Duplicate entry '1' for key 'PRIMARY'
,但没有重复条目。
如果我这样做,它会起作用,新行将插入远程数据库。
while($list=mysql_fetch_array($local_result))
{
$id=$list['id'];
$pflink=$list['pflink'];
$image=$list['image'];
$pagelink=$list['pagelink'];
$title=$list['title'];
// and so on...
$remote_update=mysql_query("INSERT INTO $tablename SET id='$id', image='$image', pagelink='$pagelink', title='$title'......");
$remote_update_result = mysql_query($remote_update, $remote_connection) or trigger_error(mysql_error());
}
我在数据库中有很多列,也有很多数据库,我想以第一种方式来做,因为我想将这些代码重新用于另一个数据库,只需更改$database
并$tablename
在另一个数据库的需要文件中。
请查看并建议任何可能的方法。