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

org.jsimpledb.kv.cockroach.CockroachKVTransaction Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb.kv.cockroach;

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

import org.jsimpledb.kv.sql.SQLKVDatabase;
import org.jsimpledb.kv.sql.SQLKVTransaction;

/**
 * {@link KVTransaction} implementation based on CockroachDB.
 */
class CockroachKVTransaction extends SQLKVTransaction {

    CockroachKVTransaction(SQLKVDatabase database, Connection connection) throws SQLException {
        super(database, connection);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy