Hi,

Im new to xerces, and what I am trying to do, is to parse an xml
document that has been exported from a database. It contains xsd schema
information (or dtd) about the (db) types, and is organized in a flat
table-like xml structure. I think this should be a common scenario, f.ex:

<resultset>
  <row>
    <name>..</name>
    <description>..</description>
    <isbn>..</isbn>
  </row>
  <row>
    <name>..</name>
    <description>..</description>
    <isbn>..</isbn>
  </row>
</resultset>

I want to parse the document and retrieve the type information from
schema for each element, to be able to process the data later in my app.
How can I retrieve the type information when parsing? I am using SAX.


Thanks in advance,
Rohnny

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to