com.vesoft.nebula.jdbc.statement.NebulaStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nebula-jdbc Show documentation
Show all versions of nebula-jdbc Show documentation
The official JDBC connector for Nebula Graph.
The newest version!
/* Copyright (c) 2020 vesoft inc. All rights reserved.
*
* This source code is licensed under Apache 2.0 License.
*/
package com.vesoft.nebula.jdbc.statement;
import java.sql.Statement;
import java.sql.SQLException;
public interface NebulaStatement extends Statement {
void checkReadOnly(String nGql) throws SQLException;
void checkUpdate(String nGql) throws SQLException;
void checkClosed() throws SQLException;
}