I am calling oracle package, to get xml file from the package into oracleDataReader. How can i load that into xmldocument?
Here is the code:
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???");
}
try
IF the above does not work for you please provide information on the statement that is run by
cmdand the DB structure/field definition etc.