从XML数据创建SQL表

时间:2012-08-24 09:03:59

标签: mysql xml

我有一个包含以下数据的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<countries>
    <country id="Canada">
        <location>
            <code>CAXX0001</code>
            <name>Abbotsford</name>
        </location>
        <location>
            <code>CAXX0002</code>
            <name>Agassiz</name>
        </location>
    </country>
    <country id="Belgium">
        <location>
            <code>BEXX0001</code>
            <name>Anderlecht</name>
        </location>
    </country>
</countries>

我需要使用其中的数据来创建数据库表(MYSQL 5.1) 包含以下字段

countryName:(从国家/地区代码的id属性中读取),
locationCode:(从代码子标签的值读取),
locationName:(从name sub-tag的值读取)

任何有关SQL语法的帮助都将受到赞赏 谢谢!

3 个答案:

答案 0 :(得分:1)

感谢。 我找到了一个使用LOAD XML INFILE方法的解决方案

http://grox.net/doc/mysql/refman-5.5-en.html-chapter/sql-syntax.html#load-xml

答案 1 :(得分:0)

使用Python SAX解析器处理XML文件。

答案 2 :(得分:0)

使用PHP执行此操作。这很简单。 : - )

$info = file_get_contents( "./MyFile.xml" );
$info = htmlspecialchars_decode( $info );
$xml = simplexml_load_string( $info );
$json = json_encode( $xml );
$array = json_decode( $json, true );

所以基本上,你首先获取XML,然后你删除任何特殊字符(有时XML将作为&amp; -lt-;列&amp; -gt- ;.(当然是减去破折号!)所以你使用特殊字符解码,以摆脱你的事情,如&#34;&lt; column&gt;&#34;。然后你使用简单的XML将字符串加载到XML数组。然后你使用json_encode来翻译XML然后你使用json_decode将JSON数组转换回一个关联数组。一旦你有了这个形式,你可以使用FOREACH命令迭代数组。我注意到这似乎总是创建一个迭代的数组,它在数组中有两个东西:NewDataSet和Table。所以我总是这样做:

 foreach( $array['NewDataSet']['Table'] as $k=>$v ){
      .   .   .
 }

它也可能有空白数组。这些是没有东西价值的时候。因此INSERT命令如下所示:

foreach( $array["NewDataSet"]["Table"] as $k=>$v ){
    $sql = "insert into categories (";
    $val = "values (";
    foreach( $v as $k1=>$v1 ){
        $sql .= "$k1,";

        if( is_numeric($v1) ){ $val .= "$v1,"; }
            else if( is_array($v1) ){ $val .= "'',"; }
            else { $val .= "'$v1',"; }
        }

    $sql = substr( $sql, 0, -1 ) . ") " . substr( $val, 0, -1 ) . ")";
    $s = dosql( $sql );
    }

但是你可以改变一下来做一个CREATE TABLE命令。例如,以下内容来自一个通过XML完成所有内容的网站

<BrandUpdate>
<Input>
<param name="CustomerNumber" maxlength="5" type="xs:numeric-string">Customer Number</param>
<param name="UserName" maxlength="50" type="xs:string">User Name</param>
<param name="Password" maxlength="15" type="xs:string">Password</param>
<param name="Source" maxlength="8" type="xs:string">Description of source using service</param>
</Input>
<Output>
<DataSet>
<xs:schema id="NewDataSet">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded"><xs:element name="Table">
<xs:complexType>
<xs:sequence>
<xs:element name="BRDNO" type="xs:decimal" minOccurs="0" MaxLength="4,0" Description="Brand Id"/>
<xs:element name="BRDNM" type="xs:string" minOccurs="0" MaxLength="50" Description="Brand Name"/>
<xs:element name="BRDURL" type="xs:string" minOccurs="0" MaxLength="50" Description="Brand URL"/>
<xs:element name="ITCOUNT" type="xs:int" minOccurs="0" Description="Count of Brand Items"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element></xs:schema>
</DataSet>
</Output>
</BrandUpdate>

正如您所看到的 - 设置CREATE TABLE命令的所有信息都已存在。您所要做的就是访问MySQL网站,了解如何布局CREATE TABLE命令,然后使用FOREACH命令遍历数组并设置命令以创建表条目。你要做的最后一件事就是执行MySQL命令。

使用MySQLi时我使用以下内容。这很简单,但有效

################################################################################
#   dosql(). Do the SQL command.
################################################################################
function dosql( $sql )
{
    global $mysqli;

    echo "SQL = $sql\n";
    $res = $mysqli->query( $sql );
    if( !$res ){
        $ary = debug_backtrace();
        if( isset($ary[1]) ){ $a = $ary[1]['line']; }
            else if( isset( $ary[0]) ){ $a = $ary[0]['line']; }
            else { $a = "???"; }

        echo "ERROR @ " . $a . " : (" .  $mysqli->errno . ")\n" . $mysqli->error . "\n\n";
        echo "SQL = $sql\n";
        exit;
        }

    if( preg_match("/insert/i", $sql) ){ return $mysqli->insert_id; }
    if( preg_match("/delete/i", $sql) ){ return true; }
    if( !is_object($res) ){ return null; }

    $cnt = -1;
    $ary = array();
    $res->data_seek(0);
    while( $row = $res->fetch_assoc() ){
        $cnt++;
        foreach( $row as $k=>$v ){ $ary[$cnt][$k] = $v; }
        }

    return $ary;
}

我通过以下方式打开连接:

echo "Establishing a connection to the database...please wait.\n";
$mysqli = new mysqli( "<HOST>", "<USR>", "<PWD>", "<TABLE>" );
if( $mysqli->connect_errno ){
    echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
    exit;
    }

我希望这能帮到你一点点。 : - )