Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0003606: H2 lost data from restart or power failure
  • Loading branch information
erilong committed Jun 18, 2018
1 parent c30b7f5 commit d0916be
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
Expand Up @@ -23,6 +23,7 @@
import javax.sql.DataSource;

import org.jumpmind.db.platform.DatabaseInfo;
import org.jumpmind.db.sql.ISqlTransaction;
import org.jumpmind.db.sql.JdbcSqlTemplate;
import org.jumpmind.db.sql.SqlTemplateSettings;
import org.jumpmind.db.sql.SymmetricLobHandler;
Expand Down Expand Up @@ -51,4 +52,14 @@ public String getSelectLastInsertIdSql(String sequenceName) {
return "call IDENTITY()";
}

@Override
public ISqlTransaction startSqlTransaction(boolean autoCommit) {
return new H2JdbcSqlTransaction(this, autoCommit);
}

@Override
public ISqlTransaction startSqlTransaction() {
return new H2JdbcSqlTransaction(this);
}

}
@@ -0,0 +1,42 @@
/**
* 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 General Public License, version 3.0 (GPLv3)
* (the "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU General Public License,
* version 3.0 (GPLv3) along with this library; if not, see
* <http://www.gnu.org/licenses/>.
*
* 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.db.platform.h2;

import org.jumpmind.db.sql.JdbcSqlTemplate;
import org.jumpmind.db.sql.JdbcSqlTransaction;

public class H2JdbcSqlTransaction extends JdbcSqlTransaction {

public H2JdbcSqlTransaction(JdbcSqlTemplate jdbcSqlTemplate) {
this(jdbcSqlTemplate, false);
}

public H2JdbcSqlTransaction(JdbcSqlTemplate jdbcSqlTemplate, boolean autoCommit) {
super(jdbcSqlTemplate, autoCommit);
}

@Override
public void commit() {
super.commit();
execute("checkpoint sync");
}

}

0 comments on commit d0916be

Please sign in to comment.