Package de.willuhn.jameica.hbci.server
Class AbstractDBSupportImpl
- java.lang.Object
-
- de.willuhn.jameica.hbci.server.AbstractDBSupportImpl
-
- All Implemented Interfaces:
DBSupport,java.io.Serializable
- Direct Known Subclasses:
DBSupportH2Impl,DBSupportMySqlImpl,DBSupportPostgreSQLImpl
public abstract class AbstractDBSupportImpl extends java.lang.Object implements DBSupport
Abstrakte Basisklasse fuer den Datenbank-Support.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractDBSupportImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckConnection(java.sql.Connection conn)Prueft die Datenbankverbindung.voidexecute(java.sql.Connection conn, java.io.File sqlScript)Fuehrt ein SQL-Update-Script auf der Datenbank aus.intgetTransactionIsolationLevel()Liefert das Transaction-Isolation-Level.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.willuhn.jameica.hbci.rmi.DBSupport
getInsertWithID, getJdbcDriver, getJdbcPassword, getJdbcUrl, getJdbcUsername, getScriptPrefix, getSQLTimestamp
-
-
-
-
Method Detail
-
execute
public void execute(java.sql.Connection conn, java.io.File sqlScript) throws java.rmi.RemoteExceptionDescription copied from interface:DBSupportFuehrt ein SQL-Update-Script auf der Datenbank aus.- Specified by:
executein interfaceDBSupport- Parameters:
conn- die Datenbank-Connection.sqlScript- das SQL-Script.- Throws:
java.rmi.RemoteException- See Also:
DBSupport.execute(java.sql.Connection, java.io.File)
-
getTransactionIsolationLevel
public int getTransactionIsolationLevel() throws java.rmi.RemoteExceptionDescription copied from interface:DBSupportLiefert das Transaction-Isolation-Level.- Specified by:
getTransactionIsolationLevelin interfaceDBSupport- Returns:
- das Transaction-Isolation-Level.
- Throws:
java.rmi.RemoteException- See Also:
DBSupport.getTransactionIsolationLevel()
-
checkConnection
public void checkConnection(java.sql.Connection conn) throws java.rmi.RemoteExceptionDescription copied from interface:DBSupportPrueft die Datenbankverbindung.- Specified by:
checkConnectionin interfaceDBSupport- Parameters:
conn- die Datenbank-Connection.- Throws:
java.rmi.RemoteException- Wenn die Verbindung defekt ist und vom DB-Service neu erzeugt werden muss.- See Also:
DBSupport.checkConnection(java.sql.Connection)
-
-