com.tigergraph.jdbc.common.DataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tigergraph-jdbc-driver Show documentation
Show all versions of tigergraph-jdbc-driver Show documentation
This project is a type 4 jdbc driver which implemented the standard jdbc interface. It supports connectivity to tigergraph server and varieties of query types.
package com.tigergraph.jdbc.common;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.util.logging.Logger;
abstract class DataSource implements javax.sql.DataSource {
/** Methods not implemented yet. */
@Override
public Connection getConnection() throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public Connection getConnection(String username, String password) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public PrintWriter getLogWriter() throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public void setLogWriter(PrintWriter out) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public void setLoginTimeout(int seconds) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public int getLoginTimeout() throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public T unwrap(Class iface) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
}