Package ru.curs.celesta.dbutils.h2
Class RecVersionCheckTrigger
- java.lang.Object
-
- ru.curs.celesta.dbutils.h2.RecVersionCheckTrigger
-
- All Implemented Interfaces:
org.h2.api.Trigger
public class RecVersionCheckTrigger extends Object implements org.h2.api.Trigger
Created by ioann on 03.05.2017.
-
-
Constructor Summary
Constructors Constructor Description RecVersionCheckTrigger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
fire(Connection connection, Object[] oldRow, Object[] newRow)
void
init(Connection connection, String schemaName, String triggerName, String tableName, boolean before, int type)
void
remove()
-
-
-
Method Detail
-
init
public void init(Connection connection, String schemaName, String triggerName, String tableName, boolean before, int type) throws SQLException
- Specified by:
init
in interfaceorg.h2.api.Trigger
- Throws:
SQLException
-
fire
public void fire(Connection connection, Object[] oldRow, Object[] newRow) throws SQLException
- Specified by:
fire
in interfaceorg.h2.api.Trigger
- Throws:
SQLException
-
close
public void close()
- Specified by:
close
in interfaceorg.h2.api.Trigger
-
remove
public void remove()
- Specified by:
remove
in interfaceorg.h2.api.Trigger
-
-