从oracle reader将xml数据加载到文件中

时间:2012-03-30 18:28:08

标签: c# oracle10g

我正在调用oracle包,从包中获取xml文件到oracleDataReader。我如何加载到xmldocument? 这是代码:

OracleDataReader reader = new OracleDataReader();

     //calling package here and reading xml file into reader... 

     reader = cmd.ExecuteReader();

    while(reader.Read())
    {                            
        XmlDocument doc = new XmlDocument();
        doc.LoadXml("what should i enter here to add the reader xml file???");    

    }    

1 个答案:

答案 0 :(得分:0)

doc.LoadXml(reader.GetString(0));

如果以上内容对您不起作用,请提供有关cmd运行的语句和数据库结构/字段定义等的信息。