0

我试图从网络上的 XML 文件中获取数据到我的数据库中,以便我可以使用它。

我已经生成了以下代码,但是自从我完成编码以来已经有很长时间了,我迷失了我收到的错误消息。

错误是“'字段列表'中的未知列'10074'”。

10074 是 XML 文件中第一项的产品 ID。

任何指针都会非常有用,因为它正在让我头疼!

我的代码如下:

    <?php
   $Products = simplexml_load_file('http://atsdistribution.co.uk/feeds/xml_all_products.aspx');


$con = mysql_connect(Details);
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
mysql_select_db("catflaps_products", $con);


foreach($Products->Product as $Product)
{
$ProductID = $Product->ProductID;
$Name = $Product->Name;
$DropshipPrice = $Product->DropshipPrice;
$SRP = $Product->SRP;
$Brand = $Product->Brand;
$Xline = $Product->Xline;
$InStock = $Product->InStock;
$Stock = $Product->Stock;
$Barcode = $Product->Barcode;
$Weight = $Product->Weight;
$CategoryID = $Product->CategoryID;
$Category = $Product->Category;
$SmallImage = $Product->SmallImage;
$LargeImage = $Product->LargeImage;
$Description = $Product->Description;

mysql_query("INSERT INTO test(ProductID, Name, DropshipPrice, SRP, Brand, Xline, InStock, Stock, Barcode, Weight, CategoryID, Category, SmallImage, LargeImage, Description)
VALUES(`$ProductID`, `$Name` , `$DropshipPrice`, `$SRP`, `$Brand`, `$Xline`, `$InStock`, `$Stock`, `$Barcode`, `$Weight`, `$CategoryID`, `$Category`, `$SmallImage`, `$LargeImage`, `$Description`)")
        or die(mysql_error());

}

mysql_close($con);


?>
4

1 回答 1

0
  1. 您不应在 VALUES 部分中使用反引号。它只是引用 mysql 标识符(如表、列名)。我认为如果您删除它,您的问题将得到解决
  2. 当您在 VALUES 部分引用字符串值时,您应该使用引号(常规的 ' 或 ")(但请参见下文,有更好的方法)
  3. 如果您选择 #2,那么您需要在您的情况下使用 mysql_real_escape_string 从 XML 中正确转义您的值。事实上,如果您不这样做,这就是对安全性的破坏(请参阅 SQL 注入)。但是,即使您说这是一次性使用的临时脚本等,当您的 xml 数据中有单引号或双引号时,您可能最终会遇到另一个错误
  4. 最好的方法是使用 PDO 准备语句,然后您不必费心用引号引用某些数据类型或不这样做 - 您将某些参数与其数据类型绑定。请记住,今天不推荐使用 mysql_* 函数。

所以这段代码就像一个魅力:

<?php
$Products = simplexml_load_file('xml_all_products.xml');
$config = array('db' => array(
    'dbname' => 'test',
    'host'   => 'localhost:4040',
    'username' => 'xx',
    'password' => 'xxx'
));
$db = new PDO('mysql:dbname='.$config['db']['dbname'].';host='.$config['db']['host'],$config['db']['username'],$config['db']['password']);

foreach($Products->Product as $Product)
{
    $ProductID = $Product->ProductID;
    $Name = $Product->Name;
    $DropshipPrice = $Product->DropshipPrice;
    $SRP = $Product->SRP;
    $Brand = $Product->Brand;
    $Xline = $Product->Xline;
    $InStock = $Product->InStock;
    $Stock = $Product->Stock;
    $Barcode = $Product->Barcode;
    $Weight = $Product->Weight;
    $CategoryID = $Product->CategoryID;
    $Category = $Product->Category;
    $SmallImage = $Product->SmallImage;
    $LargeImage = $Product->LargeImage;
    $Description = $Product->Description;

    $ProductsRS = $db->prepare("INSERT INTO test(ProductID, Name, DropshipPrice, SRP, Brand, Xline, InStock, Stock, Barcode, Weight, CategoryID, Category, SmallImage, LargeImage, Description)
                        VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");

    $ProductsRS->execute(array($ProductID, $Name, $DropshipPrice, $SRP, $Brand, $Xline, $InStock, $Stock, $Barcode, $Weight, $CategoryID, $Category, $SmallImage, $LargeImage, $Description));
}
于 2013-03-24T17:15:38.420 回答