
io.vertx.jdbcclient.impl.GetTransactionIsolation Maven / Gradle / Ivy
package io.vertx.jdbcclient.impl;
import io.vertx.jdbcclient.impl.actions.JDBCAction;
import io.vertx.sqlclient.internal.command.CommandBase;
import java.sql.Connection;
import java.sql.SQLException;
public class GetTransactionIsolation extends CommandBase implements JDBCAction {
public GetTransactionIsolation() {
}
@Override
public Integer execute(Connection conn) throws SQLException {
return conn.getTransactionIsolation();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy