将XML文件中的数据插入表中

时间:2013-03-24 15:07:04

标签: php mysql xml database

我正在尝试将Web上的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);


?>

1 个答案:

答案 0 :(得分:0)

  1. 你不应该在VALUES部分内使用反引号。它只引用mysql标识符(如表,列名)。我想如果你删除它,你的问题就会解决
  2. 当您在VALUES部分引用字符串值时,您应该使用引号(常规的'或')(但请参见下文,有更好的方法)
  3. 如果选择#2,则需要在您的情况下使用mysql_real_escape_string从XML中正确地转义值。实际上,如果您不这样做,这是安全漏洞(请参阅SQL注入)。但即使您说这是一次性使用的临时脚本等,当您的xml数据中有单引号或双引号时,您可能会遇到另一个错误
  4. 最好的方法是使用PDO prepare语句,然后你不用引号引用某些数据类型或者不这样做 - 你将某个param绑定到它的数据类型。请记住,今天不推荐使用mysql_ *函数。
  5. 所以这段代码就像一个魅力:

    <?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));
    }