JDBCInputSource.java
extends the org.xml.sax.InputSource class to implement a parser that operates on a JDBC
data source, iterates over each row and column, and generates appropriate SAX events while iterating.
For supporting information see,
XML APIs for
Databases
MySAXParserBean.java
invokes the startElement method at the beginning of every element in the XML document, and
the characters method to report each chunk of character data, and finally,
the endElement method at the end of every element in the XML document.
For more information see
Web Application Development
with JSP Technology and XML..