0

我有一个包含一些数据的 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:(从country标签的id属性读取),
locationCode:(从code子标签的值读取),
locationName:(从name子标签的值读取)

任何有关 SQL 语法的帮助将不胜感激。
谢谢!

4

3 回答 3

1

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

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

于 2012-08-24T17:45:36.190 回答
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 会以 &-lt-;column&-gt-; 的形式出现。(当然要减去破折号!)所以你使用特殊字符解码来摆脱那些留下诸如“<column>”之类的东西。然后使用简单的 XML 将字符串加载到 XML 数组中。然后使用 json_encode 将 XML 转换为 JSON。然后使用 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;
    }

我希望这对你有所帮助。:-)

于 2014-09-19T15:42:04.320 回答
0

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

于 2012-08-24T09:06:50.527 回答