org.drizzle.jdbc.DrizzleResultSetMetaData Maven / Gradle / Ivy
Show all versions of drizzle-jdbc Show documentation
/*
* Drizzle-JDBC
*
* Copyright (c) 2009-2011, Marcus Eriksson
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
* conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the driver nor the names of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.drizzle.jdbc;
import org.drizzle.jdbc.internal.common.ColumnInformation;
import org.drizzle.jdbc.internal.common.queryresults.ColumnFlags;
import org.drizzle.jdbc.internal.SQLExceptionMapper;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.List;
/**
* TODO: finish implem.
*
* User: marcuse Date: Feb 8, 2009 Time: 9:48:12 PM
*/
public class DrizzleResultSetMetaData implements ResultSetMetaData {
private final List fieldPackets;
public DrizzleResultSetMetaData(final List fieldPackets) {
this.fieldPackets = fieldPackets;
}
/**
* Returns the number of columns in this ResultSet
object.
*
* @return the number of columns
* @throws java.sql.SQLException if a database access error occurs
*/
public int getColumnCount() throws SQLException {
return fieldPackets.size();
}
/**
* Indicates whether the designated column is automatically numbered.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isAutoIncrement(final int column) throws SQLException {
return getColumnInformation(column).getFlags().contains(ColumnFlags.AUTO_INCREMENT);
}
/**
* Indicates whether a column's case matters.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isCaseSensitive(final int column) throws SQLException {
return getColumnInformation(column).getFlags().contains(ColumnFlags.BINARY);
}
/**
* Indicates whether the designated column can be used in a where clause.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isSearchable(final int column) throws SQLException {
return true;
}
/**
* Indicates whether the designated column is a cash value.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isCurrency(final int column) throws SQLException {
return false; // no currency columns in drizzle
}
/**
* Indicates the nullability of values in the designated column.
*
* @param column the first column is 1, the second is 2, ...
* @return the nullability status of the given column; one of columnNoNulls
,
* columnNullable
or columnNullableUnknown
* @throws java.sql.SQLException if a database access error occurs
*/
public int isNullable(final int column) throws SQLException {
if (getColumnInformation(column).getFlags().contains(ColumnFlags.NOT_NULL)) {
return ResultSetMetaData.columnNoNulls;
} else {
return ResultSetMetaData.columnNullable;
}
}
/**
* Indicates whether values in the designated column are signed numbers.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isSigned(final int column) throws SQLException {
return true; //only signed numbers in drizzle
}
/**
* Indicates the designated column's normal maximum width in characters.
*
* @param column the first column is 1, the second is 2, ...
* @return the normal maximum number of characters allowed as the width of the designated column
* @throws java.sql.SQLException if a database access error occurs
*/
public int getColumnDisplaySize(final int column) throws SQLException {
return (int) getColumnInformation(column).getLength();
}
/**
* Gets the designated column's suggested title for use in printouts and displays. The suggested title is usually
* specified by the SQL AS
clause. If a SQL AS
is not specified, the value returned from
* getColumnLabel
will be the same as the value returned by the getColumnName
method.
*
* @param column the first column is 1, the second is 2, ...
* @return the suggested column title
* @throws java.sql.SQLException if a database access error occurs
*/
public String getColumnLabel(final int column) throws SQLException {
return getColumnInformation(column).getName();
}
/**
* Get the designated column's name.
*
* @param column the first column is 1, the second is 2, ...
* @return column name
* @throws java.sql.SQLException if a database access error occurs
*/
public String getColumnName(final int column) throws SQLException {
return getColumnInformation(column).getOriginalName();
}
/**
* Get the designated column's table's schema.
*
* @param column the first column is 1, the second is 2, ...
* @return schema name or "" if not applicable
* @throws java.sql.SQLException if a database access error occurs
*/
public String getSchemaName(final int column) throws SQLException {
return getColumnInformation(column).getDb();
}
/**
* Get the designated column's specified column size. For numeric data, this is the maximum precision. For
* character data, this is the length in characters. For datetime datatypes, this is the length in characters of the
* String representation (assuming the maximum allowed precision of the fractional seconds component). For binary
* data, this is the length in bytes. For the ROWID datatype, this is the length in bytes. 0 is returned for data
* types where the column size is not applicable.
*
* @param column the first column is 1, the second is 2, ...
* @return precision
* @throws java.sql.SQLException if a database access error occurs
*/
public int getPrecision(final int column) throws SQLException {
return (int) getColumnInformation(column).getLength();
}
/**
* Gets the designated column's number of digits to right of the decimal point. 0 is returned for data types where
* the scale is not applicable.
*
* @param column the first column is 1, the second is 2, ...
* @return scale
* @throws java.sql.SQLException if a database access error occurs
*/
public int getScale(final int column) throws SQLException {
return getColumnInformation(column).getDecimals();
}
/**
* Gets the designated column's table name.
*
* @param column the first column is 1, the second is 2, ...
* @return table name or "" if not applicable
* @throws java.sql.SQLException if a database access error occurs
*/
public String getTableName(final int column) throws SQLException {
return getColumnInformation(column).getTable();
}
/**
* Gets the designated column's table's catalog name.
*
* @param column the first column is 1, the second is 2, ...
* @return the name of the catalog for the table in which the given column appears or "" if not applicable
* @throws java.sql.SQLException if a database access error occurs
*/
public String getCatalogName(final int column) throws SQLException {
return "";
}
/**
* Retrieves the designated column's SQL type.
*
* @param column the first column is 1, the second is 2, ...
* @return SQL type from java.sql.Types
* @throws java.sql.SQLException if a database access error occurs
* @see java.sql.Types
*/
public int getColumnType(final int column) throws SQLException {
return getColumnInformation(column).getType().getSqlType();
}
/**
* Retrieves the designated column's database-specific type name.
*
* @param column the first column is 1, the second is 2, ...
* @return type name used by the database. If the column type is a user-defined type, then a fully-qualified type
* name is returned.
* @throws java.sql.SQLException if a database access error occurs
*/
public String getColumnTypeName(final int column) throws SQLException {
return getColumnInformation(column).getType().getTypeName();
}
/**
* Indicates whether the designated column is definitely not writable.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isReadOnly(final int column) throws SQLException {
return false;
}
/**
* Indicates whether it is possible for a write on the designated column to succeed.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isWritable(final int column) throws SQLException {
return !isReadOnly(column);
}
/**
* Indicates whether a write on the designated column will definitely succeed.
*
* @param column the first column is 1, the second is 2, ...
* @return true
if so; false
otherwise
* @throws java.sql.SQLException if a database access error occurs
*/
public boolean isDefinitelyWritable(final int column) throws SQLException {
return !isReadOnly(column);
}
/**
* Returns the fully-qualified name of the Java class whose instances are manufactured if the method
* ResultSet.getObject
is called to retrieve a value from the column. ResultSet.getObject
* may return a subclass of the class returned by this method.
*
* @param column the first column is 1, the second is 2, ...
* @return the fully-qualified name of the class in the Java programming language that would be used by the method
* ResultSet.getObject
to retrieve the value in the specified column. This is the class name
* used for custom mapping.
* @throws java.sql.SQLException if a database access error occurs
* @since 1.2
*/
public String getColumnClassName(final int column) throws SQLException {
return getColumnInformation(column).getType().getJavaType().getName();
}
private ColumnInformation getColumnInformation(final int column) throws SQLException {
if (column - 1 >= 0 && column - 1 <= fieldPackets.size()) {
return fieldPackets.get(column - 1);
}
throw SQLExceptionMapper.getSQLException("No such column");
}
/**
* Returns an object that implements the given interface to allow access to non-standard methods, or standard
* methods not exposed by the proxy.
*
* If the receiver implements the interface then the result is the receiver or a proxy for the receiver. If the
* receiver is a wrapper and the wrapped object implements the interface then the result is the wrapped object or a
* proxy for the wrapped object. Otherwise return the the result of calling unwrap
recursively on the
* wrapped object or a proxy for that result. If the receiver is not a wrapper and does not implement the interface,
* then an SQLException
is thrown.
*
* @param iface A Class defining an interface that the result must implement.
* @return an object that implements the interface. May be a proxy for the actual implementing object.
* @throws java.sql.SQLException If no object found that implements the interface
* @since 1.6
*/
public T unwrap(final Class iface) throws SQLException {
return null;
}
/**
* Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an
* object that does. Returns false otherwise. If this implements the interface then return true, else if this is a
* wrapper then return the result of recursively calling isWrapperFor
on the wrapped object. If this
* does not implement the interface and is not a wrapper, return false. This method should be implemented as a
* low-cost operation compared to unwrap
so that callers can use this method to avoid expensive
* unwrap
calls that may fail. If this method returns true then calling unwrap
with the
* same argument should succeed.
*
* @param iface a Class defining an interface.
* @return true if this implements the interface or directly or indirectly wraps an object that does.
* @throws java.sql.SQLException if an error occurs while determining whether this is a wrapper for an object with
* the given interface.
* @since 1.6
*/
public boolean isWrapperFor(final Class> iface) throws SQLException {
return false;
}
}