Uses of Class
org.springframework.dao.InvalidDataAccessApiUsageException
Package
Description
Simplification layer for table inserts and stored procedure calls.
The classes in this package represent RDBMS queries, updates, and stored
procedures as threadsafe, reusable objects.
Support classes for the JDBC framework, used by the classes in the
jdbc.core and jdbc.object packages.
Abstraction for handling fields of SQLXML data type.
Package providing integration of
Hibernate 5.x
with Spring concepts.
-
Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.core.simple
-
Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.object
Modifier and TypeMethodDescriptionfinal void
RdbmsOperation.compile()
Compile this query.protected abstract void
RdbmsOperation.compileInternal()
Subclasses must implement this template method to perform their own compilation.void
RdbmsOperation.declareParameter
(SqlParameter param) Declare a parameter for this operation.void
StoredProcedure.declareParameter
(SqlParameter param) Declare a parameter.void
RdbmsOperation.setTypes
(int[] types) Add anonymous parameters, specifying only their SQL types as defined in thejava.sql.Types
class.protected void
RdbmsOperation.validateNamedParameters
(Map<String, ?> parameters) Validate the named parameters passed to an execute method based on declared parameters.protected void
RdbmsOperation.validateParameters
(Object[] parameters) Validate the parameters passed to an execute method based on declared parameters. -
Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.support
Modifier and TypeMethodDescriptionGeneratedKeyHolder.getKey()
KeyHolder.getKey()
Retrieve the first item from the first map, assuming that there is just one item and just one map, and that the item is a number.<T> T
<T> T
Retrieve the first item from the first map, assuming that there is just one item and just one map, and that the item is an instance of specified type.GeneratedKeyHolder.getKeys()
KeyHolder.getKeys()
Retrieve the first map of keys. -
Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.support.xml
Modifier and TypeClassDescriptionclass
Exception thrown when the underlying implementation does not support the requested feature of the API. -
Uses of InvalidDataAccessApiUsageException in org.springframework.orm.hibernate5
Modifier and TypeMethodDescriptionprotected void
HibernateTemplate.checkWriteOperationAllowed
(Session session) Check whether write operations are allowed on the given Session.