1

Following query is returning null in Mathematica.

t = "select xmlelement(\"test\",1) as test from dual"; SQLExecute[conn, t]

It should retrun 1 as result but it is returing NUll value. How can I rertive xml data stored in the database using mathematica??

Manoj
  • 23
  • 2
  • You might try casting the XML to varchar, e.g. select cast(xmlelement("test",1) as varchar(255)) as test from dual. – WReach May 24 '17 at 14:16

0 Answers0