Uses of Interface
org.apache.openjpa.kernel.PreparedQuery
-
Packages that use PreparedQuery Package Description org.apache.openjpa.jdbc.kernel OpenJPA-JDBC Runtime Kernelorg.apache.openjpa.kernel OpenJPA Runtime Kernel -
-
Uses of PreparedQuery in org.apache.openjpa.jdbc.kernel
Classes in org.apache.openjpa.jdbc.kernel that implement PreparedQuery Modifier and Type Class Description class
PreparedQueryImpl
ImplementsPreparedQuery
for SQL queries.Methods in org.apache.openjpa.jdbc.kernel that return PreparedQuery Modifier and Type Method Description PreparedQuery
PreparedQueryCacheImpl. get(java.lang.String id)
PreparedQuery
PreparedQueryCacheImpl. initialize(java.lang.String key, java.lang.Object result)
PreparedQuery
PreparedQueryCacheImpl. markUncachable(java.lang.String id, PreparedQueryCache.Exclusion exclusion)
Methods in org.apache.openjpa.jdbc.kernel with parameters of type PreparedQuery Modifier and Type Method Description boolean
PreparedQueryCacheImpl. cache(PreparedQuery q)
Cache the given query keyed by its identifier. -
Uses of PreparedQuery in org.apache.openjpa.kernel
Methods in org.apache.openjpa.kernel that return PreparedQuery Modifier and Type Method Description PreparedQuery
PreparedQueryCache. get(java.lang.String id)
Get the PreparedQuery with the given identifier if it exists. null otherwise.PreparedQuery
PreparedQueryCache. initialize(java.lang.String key, java.lang.Object executionResult)
Initialize the cached Prepared Query registered with the given key earlier by the given execution result.PreparedQuery
PreparedQueryCache. markUncachable(java.lang.String id, PreparedQueryCache.Exclusion exclusion)
Marks the given key as not amenable to caching.Methods in org.apache.openjpa.kernel with parameters of type PreparedQuery Modifier and Type Method Description boolean
PreparedQueryCache. cache(PreparedQuery q)
Cache the given PreparedQuery.
-