it.larusba.neo4j.jdbc.ResultSetMetaData Maven / Gradle / Ivy
Show all versions of neo4j-jdbc Show documentation
/**
* Copyright (c) 2016 LARUS Business Automation [http://www.larus-ba.it]
*
* This file is part of the "LARUS Integration Framework for Neo4j".
*
* The "LARUS Integration Framework for Neo4j" is licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Created on 03/02/16
*/
package it.larusba.neo4j.jdbc;
import java.sql.SQLException;
/**
* @author AgileLARUS
* @since 3.0.0
*/
public abstract class ResultSetMetaData implements java.sql.ResultSetMetaData {
@Override public abstract int getColumnCount() throws SQLException;
@Override public boolean isAutoIncrement(int column) throws SQLException {
return false;
}
@Override public boolean isCaseSensitive(int column) throws SQLException {
//TODO check if is String
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override public boolean isSearchable(int column) throws SQLException {
if (column <= 0 || column > this.getColumnCount()) {
return false;
}
return true;
}
@Override public boolean isCurrency(int column) throws SQLException {
return false;
}
@Override public int isNullable(int column) throws SQLException {
return columnNoNulls;
}
@Override public boolean isSigned(int column) throws SQLException {
return false;
}
@Override public abstract int getColumnDisplaySize(int column) throws SQLException;
@Override public abstract String getColumnLabel(int column) throws SQLException;
@Override public abstract String getColumnName(int column) throws SQLException;
@Override public String getSchemaName(int column) throws SQLException {
throw new UnsupportedOperationException();
}
@Override public int getPrecision(int column) throws SQLException {
return 0;
}
@Override public int getScale(int column) throws SQLException {
return 0;
}
@Override public String getTableName(int column) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override public abstract String getCatalogName(int column) throws SQLException;
@Override public abstract int getColumnType(int column) throws SQLException;
@Override public abstract String getColumnTypeName(int column) throws SQLException;
@Override public boolean isReadOnly(int column) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override public boolean isWritable(int column) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override public boolean isDefinitelyWritable(int column) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override public String getColumnClassName(int column) throws SQLException {
throw new UnsupportedOperationException("Not implemented yet.");
}
@Override public T unwrap(Class iface) throws SQLException {
return Wrapper.unwrap(iface, this);
}
@Override public boolean isWrapperFor(Class> iface) throws SQLException {
return Wrapper.isWrapperFor(iface, this.getClass());
}
}