Skip navigation links
A C D I J N S T U 

A

addShutdownHook(String, Connection) - Method in interface com.googlecode.kevinarpe.papaya.jooq.DatabaseConnectionShutdownHookService
Creates a Thread that will close a database connection, then adds this thread as a JVM shutdown hook by calling Runtime.addShutdownHook(Thread).
addShutdownHook(String, Connection) - Method in class com.googlecode.kevinarpe.papaya.jooq.DatabaseConnectionShutdownHookServiceImp
Creates a Thread that will close a database connection, then adds this thread as a JVM shutdown hook by calling Runtime.addShutdownHook(Thread).

C

close() - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseConnection
 
com.googlecode.kevinarpe.papaya.jooq - package com.googlecode.kevinarpe.papaya.jooq
 

D

DatabaseConnectionShutdownHookService - Interface in com.googlecode.kevinarpe.papaya.jooq
 
DatabaseConnectionShutdownHookServiceImp - Class in com.googlecode.kevinarpe.papaya.jooq
 
DatabaseConnectionShutdownHookServiceImp(LoggerService) - Constructor for class com.googlecode.kevinarpe.papaya.jooq.DatabaseConnectionShutdownHookServiceImp
 
dbConn - Variable in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseConnection
Raw JDBC data connection wrapped by JooqDatabaseConnection.jooqDSLContext
deleteOneRow(JooqDatabaseConnection, Delete<? extends Record>) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
deleteOneRow(JooqDatabaseConnection, Delete<? extends Record>) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
deleteRows(JooqDatabaseConnection, Delete<? extends Record>, CountMatcher) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
Deletes rows, then checks row count.
deleteRows(JooqDatabaseConnection, Delete<? extends Record>, CountMatcher) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
Deletes rows, then checks row count.

I

insertOneRow(JooqDatabaseConnection, Insert<? extends Record>) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
insertOneRow(JooqDatabaseConnection, Insert<? extends Record>) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
insertRows(JooqDatabaseConnection, Insert<? extends Record>, CountMatcher) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
Inserts rows, then checks row count.
insertRows(JooqDatabaseConnection, Insert<? extends Record>, CountMatcher) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
Inserts rows, then checks row count.

J

JooqDatabaseConnection - Class in com.googlecode.kevinarpe.papaya.jooq
NotThreadSafe? This is only a warning that programmers should be very careful with database connection handles! Always assume they are not thread-safe.
JooqDatabaseConnection(Connection, DSLContext) - Constructor for class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseConnection
 
JooqDatabaseConnectionFactory - Interface in com.googlecode.kevinarpe.papaya.jooq
 
JooqDatabaseQueryService - Interface in com.googlecode.kevinarpe.papaya.jooq
ThreadSafe? All implementations expected to be thread-safe by calling synchronize while executing queries.
JooqDatabaseQueryServiceImp - Class in com.googlecode.kevinarpe.papaya.jooq
 
JooqDatabaseQueryServiceImp(ExceptionThrower) - Constructor for class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
 
jooqDSLContext - Variable in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseConnection
JOOQ wrapper for raw JDBC data connection JooqDatabaseConnection.dbConn

N

newInstance(Connection) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseConnectionFactory
Creates a new JOOQ wrapper for a JDBC database connection.

S

selectRow(JooqDatabaseConnection, TResultQuery) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
selectRow(JooqDatabaseConnection, TResultQuery) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
selectRowList(JooqDatabaseConnection, TResultQuery, CountMatcher) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
Selects rows, then checks result row count.
selectRowList(JooqDatabaseConnection, TResultQuery, CountMatcher) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
Selects rows, then checks result row count.
selectValue(JooqDatabaseConnection, TResultQuery) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
This is a convenience method to call JooqDatabaseQueryService.selectRow(JooqDatabaseConnection, ResultQuery)
with a query that selects only a single column.
selectValue(JooqDatabaseConnection, TResultQuery) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
This is a convenience method to call JooqDatabaseQueryService.selectRow(JooqDatabaseConnection, ResultQuery)
with a query that selects only a single column.
selectValueList(JooqDatabaseConnection, TResultQuery, CountMatcher) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
This is a convenience method to call JooqDatabaseQueryService.selectRowList(JooqDatabaseConnection, ResultQuery, CountMatcher)
with a query that selects only a single column.
selectValueList(JooqDatabaseConnection, TResultQuery, CountMatcher) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
This is a convenience method to call JooqDatabaseQueryService.selectRowList(JooqDatabaseConnection, ResultQuery, CountMatcher)
with a query that selects only a single column.

T

trySelectRow(JooqDatabaseConnection, TResultQuery) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
trySelectRow(JooqDatabaseConnection, TResultQuery) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
trySelectValue(JooqDatabaseConnection, TResultQuery) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
This is a convenience method to call JooqDatabaseQueryService.trySelectRow(JooqDatabaseConnection, ResultQuery)
with a query that selects only a single column.
trySelectValue(JooqDatabaseConnection, TResultQuery) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
This is a convenience method to call JooqDatabaseQueryService.trySelectRow(JooqDatabaseConnection, ResultQuery)
with a query that selects only a single column.

U

updateOneRow(JooqDatabaseConnection, Update<? extends Record>) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
updateOneRow(JooqDatabaseConnection, Update<? extends Record>) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
updateRows(JooqDatabaseConnection, Update<? extends Record>, CountMatcher) - Method in interface com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryService
Updates rows, then checks row count.
updateRows(JooqDatabaseConnection, Update<? extends Record>, CountMatcher) - Method in class com.googlecode.kevinarpe.papaya.jooq.JooqDatabaseQueryServiceImp
Updates rows, then checks row count.
A C D I J N S T U 
Skip navigation links

Copyright © 2013–2020. All rights reserved.