1

我想将新行从本地表插入到远程表,我已经为它制作了一个 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 在另一个数据库的需要文件中。

请查看并建议任何可能的方法。

4

1 回答 1

2

您不能在一个请求中跨越本地和远程查询:

$remote_update=mysql_query("INSERT INTO $tablename SELECT * from $tablename");

这应该从本地选择中获取数据并将其插入远程数据库

该查询在 1 个数据库上运行,并且仅在 1 个数据库上运行。您正在尝试从表中获取数据并将其插入到同一个表中。当然,这给出了一个Duplicate entry '1' for key 'PRIMARY'

于 2012-09-16T10:26:34.663 回答