How the XML parsers work

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kadaru
    New Member
    • Apr 2007
    • 1

    How the XML parsers work

    Can any body help me out in this regard.

    For example:
    If i have stored an xml document in database in CLOB datatype then i want to access the data from database using SAX parser so how to raise an event and get the data in java file exposed to a JSP
  • dorinbogdan
    Recognized Expert Contributor
    • Feb 2007
    • 839

    #2
    Welcome to TheScripts TSDN...

    Since it's a Java related issue I will move the thread to the Java forum.

    Dorin.

    Comment

    • JosAH
      Recognized Expert MVP
      • Mar 2007
      • 11453

      #3
      Originally posted by kadaru
      Can any body help me out in this regard.

      For example:
      If i have stored an xml document in database in CLOB datatype then i want to access the data from database using SAX parser so how to raise an event and get the data in java file exposed to a JSP
      If that CLOB contains the xml tree in text form already why parse it anyway?
      Simply get a Reader from your CLOB and feed that to your jsp (or read the
      CLOB yourself using that Reader and build a String out of it for your jsp).

      kind regards,

      Jos

      Comment

      Working...