Package ch.nolix.core.sql.connection
Klasse UncloseableSqlConnection
java.lang.Object
ch.nolix.core.sql.connection.UncloseableSqlConnection
- Alle implementierten Schnittstellen:
Closeable
,CloseStateRequestable
,GroupCloseable
,ISqlConnection
,AutoCloseable
A
UncloseableSqlConnection
is a ISqlConnection
that is a
wrapper around another ISqlConnection
. When the close method of a
UncloseableSqlConnection
is called, the
UncloseableSqlConnection
and its wrapped ISqlConnection
will
not be closed.- Version:
- 2025-02-07
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
executeStatement
(String statement, String... statements) void
executeStatements
(IContainer<String> statements) static UncloseableSqlConnection
forSqlConnection
(ISqlConnection sqlConnection) getRecordsFromQuery
(String query) getSingleRecordFromQuery
(String query) void
Lets the currentGroupCloseable
note a close.Von Klasse geerbte Methoden java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.resourcecontrolapi.resourceclosingapi.CloseStateRequestable
isOpen
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.resourcecontrolapi.resourceclosingapi.GroupCloseable
close, createCloseDependencyTo, isClosed
-
Methodendetails
-
forSqlConnection
- Parameter:
sqlConnection
-- Gibt zurück:
- a new
UncloseableSqlConnection
for the given sqlConnection. - Löst aus:
RuntimeException
- if the given sqlConnection is null or not open.
-
executeStatement
- Angegeben von:
executeStatement
in SchnittstelleISqlConnection
-
executeStatements
- Angegeben von:
executeStatements
in SchnittstelleISqlConnection
-
getDatabaseEngine
- Angegeben von:
getDatabaseEngine
in SchnittstelleISqlConnection
-
getRecordsFromQuery
- Angegeben von:
getRecordsFromQuery
in SchnittstelleISqlConnection
-
getSingleRecordFromQuery
- Angegeben von:
getSingleRecordFromQuery
in SchnittstelleISqlConnection
-
getStoredCloseController
- Angegeben von:
getStoredCloseController
in SchnittstelleGroupCloseable
- Gibt zurück:
- the
ICloseController
of the currentGroupCloseable
.
-
noteClose
public void noteClose()Lets the currentGroupCloseable
note a close.- Angegeben von:
noteClose
in SchnittstelleGroupCloseable
-