Data access beans provide a rich set of features and function, while hiding much of the complexity associated with accessing relational databases.
They are Java classes written to the Enterprise JavaBeans specification.
You can use the data access beans in JavaBeans-compliant tools, such as the IBM Rational Application Developer. Because the data access beans are also Java classes, you can use them like ordinary classes.
The data access beans (in the package com.ibm.db) offer the following capabilities:
For large result sets, the data access beans provide ways to retrieve and manage packets, subsets of the complete result set.
Metadata in the object maps Java data types to SQL data types (as well as the reverse). When the query runs, the Java-datatyped parameters are automatically converted to SQL data types as specified in the metadata mapping.
When results return, the metadata object automatically converts SQL data types back into the Java data types specified in the metadata mapping.
Related reference
Data access bean types
Data access : Resources for learning