how to execute sql which is placed in an xml file using Java code?
+2
A:
- Load the SQL Statement as a String out of the XML into a Java Variable (Using SAX or DOM, for example)
- Execute the SQL Statement
Konerak
2010-07-10 09:48:39
+1 Short question and short answer.
adatapost
2010-07-10 09:50:17
how to take the sql out to xml...? i want to execute it from the XML....could you post the code?
2010-07-10 09:52:51
Can you post (an example/part of) the XML?
Konerak
2010-07-10 09:54:54
<sqlQuery>select * from table<sqlQuery>
2010-07-10 10:10:16