|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StatementFactoryException | |
org.sape.carbon.services.sql |
The Carbon SQL service comprises of
SqlStatementFactory - The functional interface to the component
DefaultStatementFactoryImpl - The default funtional implementation that defines the
createPreparedStatement and createCallableStatement methods. |
Uses of StatementFactoryException in org.sape.carbon.services.sql |
Subclasses of StatementFactoryException in org.sape.carbon.services.sql | |
class |
StatementNotConfiguredException
This exception denotes a failure to find the configuration for a named statement on the specified statement factory. |
Methods in org.sape.carbon.services.sql that throw StatementFactoryException | |
PreparedStatement |
StatementFactory.createPreparedStatement(String sqlQueryName)
Creates a java.sql.PreparedStatement based on
the configuration. |
PreparedStatement |
StatementFactory.createPreparedStatement(String sqlQueryName,
Connection connection)
Creates a java.sql.PreparedStatement based on
the configuration. |
CallableStatement |
StatementFactory.createCallableStatement(String sqlQueryName)
Creates a java.sql.CallableStatement based on
the configuration. |
CallableStatement |
StatementFactory.createCallableStatement(String sqlQueryName,
Connection connection)
Creates a java.sql.CallableStatement based on
the configuration. |
PreparedStatement |
DefaultStatementFactoryImpl.createPreparedStatement(String queryName,
Connection connection)
Creates a prepared statement for the given query name with the connection given. |
PreparedStatement |
DefaultStatementFactoryImpl.createPreparedStatement(String queryName)
Creates a prepared statement for the given query name using the default connection in the factories configuration. |
CallableStatement |
DefaultStatementFactoryImpl.createCallableStatement(String queryName,
Connection connection)
Creates a callable statement for the given query name with the connection given. |
CallableStatement |
DefaultStatementFactoryImpl.createCallableStatement(String queryName)
Creates a callable statement for the given query name using the default connection in the factories configuration. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |