Uses of Class
org.postgresql.core.CachedQuery
-
Packages that use CachedQuery Package Description org.postgresql.core org.postgresql.jdbc -
-
Uses of CachedQuery in org.postgresql.core
Fields in org.postgresql.core with type parameters of type CachedQuery Modifier and Type Field Description private LruCache<java.lang.Object,CachedQuery>QueryExecutorBase. statementCacheMethods in org.postgresql.core that return CachedQuery Modifier and Type Method Description CachedQueryQueryExecutor. borrowCallableQuery(java.lang.String sql)CachedQueryQueryExecutorBase. borrowCallableQuery(java.lang.String sql)CachedQueryQueryExecutor. borrowQuery(java.lang.String sql)CachedQueryQueryExecutorBase. borrowQuery(java.lang.String sql)CachedQueryQueryExecutor. borrowQueryByKey(java.lang.Object key)CachedQueryQueryExecutorBase. borrowQueryByKey(java.lang.Object key)CachedQueryQueryExecutor. borrowReturningQuery(java.lang.String sql, java.lang.String[] columnNames)CachedQueryQueryExecutorBase. borrowReturningQuery(java.lang.String sql, java.lang.String[] columnNames)CachedQueryCachedQueryCreateAction. create(java.lang.Object key)CachedQueryBaseConnection. createQuery(java.lang.String sql, boolean escapeProcessing, boolean isParameterized, java.lang.String... columnNames)CachedQueryQueryExecutor. createQuery(java.lang.String sql, boolean escapeProcessing, boolean isParameterized, java.lang.String... columnNames)CachedQueryQueryExecutorBase. createQuery(java.lang.String sql, boolean escapeProcessing, boolean isParameterized, java.lang.String... columnNames)CachedQueryQueryExecutor. createQueryByKey(java.lang.Object key)CachedQueryQueryExecutorBase. createQueryByKey(java.lang.Object key)Methods in org.postgresql.core with parameters of type CachedQuery Modifier and Type Method Description booleanBaseStatement. executeWithFlags(CachedQuery cachedQuery, int flags)Execute a query, passing additional query flags.voidQueryExecutor. releaseQuery(CachedQuery cachedQuery)voidQueryExecutorBase. releaseQuery(CachedQuery cachedQuery) -
Uses of CachedQuery in org.postgresql.jdbc
Fields in org.postgresql.jdbc declared as CachedQuery Modifier and Type Field Description protected CachedQueryPgPreparedStatement. preparedQueryprivate CachedQueryPgConnection. setSessionNotReadOnlyprivate CachedQueryPgConnection. setSessionReadOnlyMethods in org.postgresql.jdbc that return CachedQuery Modifier and Type Method Description (package private) CachedQueryPgConnection. borrowCallableQuery(java.lang.String sql)(package private) CachedQueryPgConnection. borrowQuery(java.lang.String sql)private CachedQueryPgConnection. borrowReturningQuery(java.lang.String sql, java.lang.String[] columnNames)CachedQueryPgConnection. createQuery(java.lang.String sql, boolean escapeProcessing, boolean isParameterized, java.lang.String... columnNames)Methods in org.postgresql.jdbc with parameters of type CachedQuery Modifier and Type Method Description (package private) voidPgConnection. execSQLUpdate(CachedQuery query)protected voidPgStatement. execute(CachedQuery cachedQuery, ParameterList queryParameters, int flags)private voidPgStatement. executeInternal(CachedQuery cachedQuery, ParameterList queryParameters, int flags)booleanPgStatement. executeWithFlags(CachedQuery simpleQuery, int flags)protected booleanPgPreparedStatement. isOneShotQuery(CachedQuery cachedQuery)protected booleanPgStatement. isOneShotQuery(CachedQuery cachedQuery)Returns true if query is unlikely to be reused.(package private) voidPgConnection. releaseQuery(CachedQuery cachedQuery)Constructors in org.postgresql.jdbc with parameters of type CachedQuery Constructor Description PgPreparedStatement(PgConnection connection, CachedQuery query, int rsType, int rsConcurrency, int rsHoldability)
-