org.javalite.cassandra.jdbc.CassandraJDBCStatement Maven / Gradle / Ivy
package org.javalite.cassandra.jdbc;
import com.datastax.oss.driver.api.core.CqlSession;
import java.sql.*;
import java.util.List;
//TODO: convert this to InvocationHandler
public class CassandraJDBCStatement implements Statement {
//this is shared across the statement and connection.
private CqlSession cqlSession;
public CassandraJDBCStatement(CqlSession session) {
this.cqlSession = session;
}
@Override
public ResultSet executeQuery(String sql) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int executeUpdate(String sql) throws SQLException {
com.datastax.oss.driver.api.core.cql.ResultSet rs = cqlSession.execute(sql);
List results = rs.all();
//TODO: finish here.
return 0;
}
@Override
public void close() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getMaxFieldSize() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setMaxFieldSize(int max) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getMaxRows() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setMaxRows(int max) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setEscapeProcessing(boolean enable) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getQueryTimeout() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setQueryTimeout(int seconds) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void cancel() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public SQLWarning getWarnings() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void clearWarnings() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setCursorName(String name) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean execute(String sql) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public ResultSet getResultSet() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getUpdateCount() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean getMoreResults() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setFetchDirection(int direction) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getFetchDirection() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setFetchSize(int rows) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getFetchSize() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getResultSetConcurrency() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getResultSetType() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void addBatch(String sql) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void clearBatch() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int[] executeBatch() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public Connection getConnection() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean getMoreResults(int current) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public ResultSet getGeneratedKeys() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int executeUpdate(String sql, int[] columnIndexes) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int executeUpdate(String sql, String[] columnNames) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean execute(String sql, int autoGeneratedKeys) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean execute(String sql, int[] columnIndexes) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean execute(String sql, String[] columnNames) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public int getResultSetHoldability() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean isClosed() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void setPoolable(boolean poolable) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean isPoolable() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public void closeOnCompletion() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean isCloseOnCompletion() throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public T unwrap(Class iface) throws SQLException {
throw new UnsupportedOperationException();
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
throw new UnsupportedOperationException();
}
}