如何使用C#获取多个Childnode innertext?

时间:2015-06-16 15:27:45

标签: c# sql xml xmlnode

我正在读取XML文件并存储在表中,但不幸的是我没有获得所有子节点的非文本值,请找到我的xml文件和csharp编码并提出解决方案。

XML:

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:ce="www.dummy.com" xmlns:mml="www.dummy.com">
<head>
<title></title>
</head>
<body>
<queries>
<query><label>1</label>Please check the first hierarchy.<page>1</page></query>
<query><label>2</label>Please check the second hierarchy.<page>12</page></query>
<query><label>3</label>Please check the third hierarchy.<page>13</page></query>
</queries>
</body>
</root>

Csharp编码

XmlNodeList xnList2 = xml.SelectNodes("/root/body/queries");
            foreach (XmlNode xn2 in xnList2)
            {
                foreach (XmlNode childNode in xn2.ChildNodes)
                {

                    queries =xn2["query"].InnerText;
                    // text should return only first query text, but I need all the query text
                    query_string = "INSERT INTO Customer_Queries values ('"+ queries + "')";
                    SqlConnection myConnection = new SqlConnection(constr);
                    myConnection.Open();
                    SqlCommand myCommand = new SqlCommand(query_string, myConnection);
                    myCommand.ExecuteNonQuery();
                    myConnection.Close();

                }

我不知道我在代码中做错了什么。

第一个查询文本重复插入所有三行

Please check the first hierarchy.

1 个答案:

答案 0 :(得分:1)

这应该有效:

    XmlNodeList xnList2 = xml.SelectNodes("/roor/body/queries");
                            foreach (XmlNode xn2 in xnList2)
                            {
                                foreach (XmlNode childNode in xn2.ChildNodes)
                                {

                                    queries = childNode.InnerText;
                                    // text should return only first query text, but I need all the query text
                                    query_string = "INSERT INTO Customer_Queries values (@query)";
                                    using(SqlConnection myConnection = new SqlConnection(constr))
                                    {
                                        myConnection.Open();
                                        using(SqlCommand myCommand = new SqlCommand(query_string, myConnection))
                                        {
                                           myCommand.parameters.AddWithValue("@query", queries);
                                           myCommand.ExecuteNonQuery();
                                        }
                                    }        
                                }
                            }

在你的foreach语句中,你声明了一个变量XmlNode childNode,它将引用xn2中的每个节点。因此,您需要使用childNode而不是xn2,因为xn2的值永远不会改变。这就是为什么你总是得到相同的价值