dear all,
I store the sql queries like stored proc call query, other queries in an xml, i use this xml to parse an execute appropriate query. I have written dtd for it. assume xml element is like this
in dtd i have given stored-procedure (#PCDATA)
If i include the dtd file in xml and parse the xml the
java code and execute the query
jdbc throws Malformed SQL92
string at position: 34
If i remove the dtd and run the parser and execute the query it works!
I know that the #PCDATA will parse the text between the tag, how do i make it work?
Thanks for your helps
V