How to check the less than condition in compiled queries of java?
In mysql we can check the less than condition by using '>' symbol but in XML files in java, how can I check that condition when we are writing query? Please suggest me.开发者_JAVA技巧 Its very helpful
Thanks, Vara Kumar PJD
How about escaping the character with
>
?
Have you tried the CDATA tag?
<![CDATA[literals]]>
`All text in an XML document will be parsed by the parser.
But text inside a CDATA section will be ignored by the parser.`
look at http://www.w3schools.com/xml/xml_cdata.asp
精彩评论