Creates a new instance of a RowSetFactory
implementation. This method uses the following
look up order to determine
the RowSetFactory implementation class to load:
javax.sql.rowset.RowSetFactory. For example:
ServiceLoader API. The ServiceLoader API will look
for a class name in the file
META-INF/services/javax.sql.rowset.RowSetFactory
in jars available to the runtime. For example, to have the RowSetFactory
implementation com.sun.rowset.RowSetFactoryImpl loaded, the
entry in META-INF/services/javax.sql.rowset.RowSetFactory would be:
com.sun.rowset.RowSetFactoryImpl
RowSetFactory instance.
Once an application has obtained a reference to a RowSetFactory,
it can use the factory to obtain RowSet instances.
RowSetFactory
SQLException | if the default factory class cannot be loaded, instantiated. The cause will be set to actual Exception |
ServiceLoader
Diagram: RowSet Support