Monday, March 3, 2008

Java Database Connectivity API

The JavaDatabase Connectivity (JDBC) API lets you invoke
SQL commands from Javaprogramming language methods.
You use the JDBC API in an enterprise bean when you have a
session bean access the database. You can also use the JDBC API
from a servlet or a JSP page to access the database directly
without going through an enterprise bean.
rgdg

Java API for XML Processing


The Java API for XML Processing (JAXP), part of the Java SE platform,
supports the processing of XML documents using Document ObjectModel (DOM),
Simple API for XML (SAX), and Extensible Stylesheet Language Transformations (XSLT).
JAXP enables applications to parse and transform XML documents independent
of a particular XML processing implementation.