All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.curs.celesta.dbutils.h2.MaterializedViewInsertTrigger Maven / Gradle / Ivy

The newest version!
package ru.curs.celesta.dbutils.h2;


import java.sql.Connection;
import java.sql.SQLException;

/**
 * Insert trigger of materialized view.
 *
 * @author ioann
 * @since 2017-07-07
 */
public final class MaterializedViewInsertTrigger extends AbstractMaterializedViewTrigger {

  private static final String NAME_PREFIX = "mvInsertFrom";

  @Override
  public void fire(Connection connection, Object[] oldRow, Object[] newRow) throws SQLException {
    delete(connection, newRow);
    insert(connection, newRow);
  }

  @Override
  String getNamePrefix() {
    return NAME_PREFIX;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy