org.jumpmind.symmetric.db.h2.H2DbDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symmetric-ds Show documentation
Show all versions of symmetric-ds Show documentation
SymmetricDS is an open source database synchronization solution. It is platform-independent,
web-enabled, and database-agnostic. SymmetricDS was first built to replicate changes between 'retail store'
databases and ad centralized 'corporate' database.
The newest version!
/*
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU Lesser General Public License (the
* "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* .
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jumpmind.symmetric.db.h2;
import org.jumpmind.symmetric.common.ParameterConstants;
import org.jumpmind.symmetric.db.AbstractEmbeddedDbDialect;
import org.jumpmind.symmetric.db.BinaryEncoding;
import org.jumpmind.symmetric.db.IDbDialect;
import org.jumpmind.symmetric.model.Trigger;
import org.jumpmind.symmetric.model.TriggerHistory;
/**
*
*/
public class H2DbDialect extends AbstractEmbeddedDbDialect implements IDbDialect {
@Override
protected boolean doesTriggerExistOnPlatform(String catalogName, String schemaName, String tableName,
String triggerName) {
boolean exists = (jdbcTemplate
.queryForInt("select count(*) from INFORMATION_SCHEMA.TRIGGERS WHERE TRIGGER_NAME = ?",
new Object[] { triggerName }) > 0)
&& (jdbcTemplate.queryForInt("select count(*) from INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = ?",
new Object[] { String.format("%s_CONFIG", triggerName) }) > 0);
if (!exists) {
removeTrigger(new StringBuilder(), catalogName, schemaName, triggerName, tableName, null);
}
return exists;
}
@Override
public void removeTrigger(StringBuilder sqlBuffer, String catalogName, String schemaName, String triggerName,
String tableName, TriggerHistory oldHistory) {
final String dropSql = String.format("DROP TRIGGER IF EXISTS %s", triggerName);
logSql(dropSql, sqlBuffer);
final String dropTable = String.format("DROP TABLE IF EXISTS %s_CONFIG", triggerName);
logSql(dropTable, sqlBuffer);
if (parameterService.is(ParameterConstants.AUTO_SYNC_TRIGGERS)) {
try {
int count = jdbcTemplate.update(dropSql);
if (count > 0) {
log.info("TriggerDropped", triggerName);
}
count = jdbcTemplate.update(dropTable);
if (count > 0) {
log.info("TableDropped", triggerName);
}
} catch (Exception e) {
log.warn("TriggerDropError", triggerName, e.getMessage());
}
}
}
@Override
public boolean isBlobSyncSupported() {
return true;
}
@Override
public boolean isClobSyncSupported() {
return true;
}
public void disableSyncTriggers(String nodeId) {
jdbcTemplate.update("set @sync_prevented=1");
jdbcTemplate.update("set @node_value=?", new Object[] { nodeId });
}
public void enableSyncTriggers() {
jdbcTemplate.update("set @sync_prevented=null");
jdbcTemplate.update("set @node_value=null");
}
public String getSyncTriggersExpression() {
return " @sync_prevented is null ";
}
/**
* An expression which the java trigger can string replace
*/
@Override
public String getTransactionTriggerExpression(String defaultCatalog, String defaultSchema, Trigger trigger) {
return "TRANSACTION_ID()";
}
@Override
public String getSelectLastInsertIdSql(String sequenceName) {
return "call IDENTITY()";
}
@Override
public BinaryEncoding getBinaryEncoding() {
return BinaryEncoding.BASE64;
}
public boolean isNonBlankCharColumnSpacePadded() {
return false;
}
public boolean isCharColumnSpaceTrimmed() {
return true;
}
public boolean isEmptyStringNulled() {
return false;
}
@Override
public boolean storesUpperCaseNamesInCatalog() {
return true;
}
@Override
public boolean supportsGetGeneratedKeys() {
return false;
}
@Override
public boolean supportsTransactionId() {
return true;
}
@Override
protected boolean allowsNullForIdentityColumn() {
return false;
}
}