Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.h2.tools.SimpleResultSet Maven / Gradle / Ivy
/*
* Copyright 2004-2011 H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.h2.tools;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.Ref;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.sql.Types;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Map;
import org.h2.constant.ErrorCode;
import org.h2.message.DbException;
import org.h2.util.MathUtils;
import org.h2.util.New;
import org.h2.value.DataType;
/*## Java 1.6 ##
import java.sql.NClob;
import java.sql.RowId;
import java.sql.SQLXML;
//*/
/**
* This class is a simple result set and meta data implementation.
* It can be used in Java functions that return a result set.
* Only the most basic methods are implemented, the others throw an exception.
* This implementation is standalone, and only relies on standard classes.
* It can be extended easily if required.
*
* An application can create a result set using the following code:
*
*
* SimpleResultSet rs = new SimpleResultSet();
* rs.addColumn("ID", Types.INTEGER, 10, 0);
* rs.addColumn("NAME", Types.VARCHAR, 255, 0);
* rs.addRow(0, "Hello" });
* rs.addRow(1, "World" });
*
*
*/
public class SimpleResultSet implements ResultSet, ResultSetMetaData {
private ArrayList rows;
private Object[] currentRow;
private int rowId = -1;
private boolean wasNull;
private SimpleRowSource source;
private ArrayList columns = New.arrayList();
private boolean autoClose = true;
/**
* This class holds the data of a result column.
*/
static class Column {
/**
* The column label.
*/
String name;
/**
* The SQL type.
*/
int sqlType;
/**
* The precision.
*/
int precision;
/**
* The scale.
*/
int scale;
}
/**
* A simple array implementation,
* backed by an object array
*/
public static class SimpleArray implements Array {
private final Object[] value;
SimpleArray(Object[] value) {
this.value = value;
}
/**
* Get the object array.
*
* @return the object array
*/
public Object getArray() {
return value;
}
/**
* INTERNAL
*/
public Object getArray(Map> map) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Object getArray(long index, int count) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Object getArray(long index, int count, Map> map) throws SQLException {
throw getUnsupportedException();
}
/**
* Get the base type of this array.
*
* @return Types.NULL
*/
public int getBaseType() {
return Types.NULL;
}
/**
* Get the base type name of this array.
*
* @return "NULL"
*/
public String getBaseTypeName() {
return "NULL";
}
/**
* INTERNAL
*/
public ResultSet getResultSet() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public ResultSet getResultSet(Map> map) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public ResultSet getResultSet(long index, int count) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public ResultSet getResultSet(long index, int count, Map> map) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void free() {
// nothing to do
}
}
/**
* This constructor is used if the result set is later populated with addRow.
*/
public SimpleResultSet() {
rows = New.arrayList();
}
/**
* This constructor is used if the result set should retrieve the rows using
* the specified row source object.
*
* @param source the row source
*/
public SimpleResultSet(SimpleRowSource source) {
this.source = source;
}
/**
* Adds a column to the result set.
* All columns must be added before adding rows.
*
* @param name null is replaced with C1, C2,...
* @param sqlType the value returned in getColumnType(..) (ignored internally)
* @param precision the precision
* @param scale the scale
*/
public void addColumn(String name, int sqlType, int precision, int scale) {
if (rows != null && rows.size() > 0) {
throw new IllegalStateException("Cannot add a column after adding rows");
}
if (name == null) {
name = "C" + (columns.size() + 1);
}
Column column = new Column();
column.name = name;
column.sqlType = sqlType;
column.precision = precision;
column.scale = scale;
columns.add(column);
}
/**
* Add a new row to the result set.
* Do not use this method when using a RowSource.
*
* @param row the row as an array of objects
*/
public void addRow(Object... row) {
if (rows == null) {
throw new IllegalStateException("Cannot add a row when using RowSource");
}
rows.add(row);
}
/**
* Returns ResultSet.CONCUR_READ_ONLY.
*
* @return CONCUR_READ_ONLY
*/
public int getConcurrency() {
return ResultSet.CONCUR_READ_ONLY;
}
/**
* Returns ResultSet.FETCH_FORWARD.
*
* @return FETCH_FORWARD
*/
public int getFetchDirection() {
return ResultSet.FETCH_FORWARD;
}
/**
* Returns 0.
*
* @return 0
*/
public int getFetchSize() {
return 0;
}
/**
* Returns the row number (1, 2,...) or 0 for no row.
*
* @return 0
*/
public int getRow() {
return rowId + 1;
}
/**
* Returns ResultSet.TYPE_FORWARD_ONLY.
*
* @return TYPE_FORWARD_ONLY
*/
public int getType() {
return ResultSet.TYPE_FORWARD_ONLY;
}
/**
* Closes the result set and releases the resources.
*/
public void close() {
currentRow = null;
rows = null;
columns = null;
rowId = -1;
if (source != null) {
source.close();
source = null;
}
}
/**
* Moves the cursor to the next row of the result set.
*
* @return true if successful, false if there are no more rows
*/
public boolean next() throws SQLException {
if (source != null) {
rowId++;
currentRow = source.readRow();
if (currentRow != null) {
return true;
}
} else if (rows != null && rowId < rows.size()) {
rowId++;
if (rowId < rows.size()) {
currentRow = rows.get(rowId);
return true;
}
}
if (autoClose) {
close();
}
return false;
}
/**
* Moves the current position to before the first row, that means resets the
* result set.
*/
public void beforeFirst() throws SQLException {
rowId = -1;
if (source != null) {
source.reset();
}
}
/**
* Returns whether the last column accessed was null.
*
* @return true if the last column accessed was null
*/
public boolean wasNull() {
return wasNull;
}
/**
* Searches for a specific column in the result set. A case-insensitive
* search is made.
*
* @param columnLabel the column label
* @return the column index (1,2,...)
* @throws SQLException if the column is not found or if the result set is
* closed
*/
public int findColumn(String columnLabel) throws SQLException {
if (columnLabel != null && columns != null) {
for (int i = 0, size = columns.size(); i < size; i++) {
if (columnLabel.equalsIgnoreCase(getColumn(i).name)) {
return i + 1;
}
}
}
throw DbException.get(ErrorCode.COLUMN_NOT_FOUND_1, columnLabel).getSQLException();
}
/**
* Returns a reference to itself.
*
* @return this
*/
public ResultSetMetaData getMetaData() {
return this;
}
/**
* Returns null.
*
* @return null
*/
public SQLWarning getWarnings() {
return null;
}
/**
* Returns null.
*
* @return null
*/
public Statement getStatement() {
return null;
}
/**
* INTERNAL
*/
public void clearWarnings() {
// nothing to do
}
// ---- get ---------------------------------------------
/**
* Returns the value as a java.sql.Array.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Array getArray(int columnIndex) throws SQLException {
Object[] o = (Object[]) get(columnIndex);
return o == null ? null : new SimpleArray(o);
}
/**
* Returns the value as a java.sql.Array.
*
* @param columnLabel the column label
* @return the value
*/
public Array getArray(String columnLabel) throws SQLException {
return getArray(findColumn(columnLabel));
}
/**
* INTERNAL
*/
public InputStream getAsciiStream(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public InputStream getAsciiStream(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
/**
* Returns the value as a java.math.BigDecimal.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof BigDecimal)) {
o = new BigDecimal(o.toString());
}
return (BigDecimal) o;
}
/**
* Returns the value as a java.math.BigDecimal.
*
* @param columnLabel the column label
* @return the value
*/
public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
return getBigDecimal(findColumn(columnLabel));
}
/**
* @deprecated INTERNAL
*/
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
throw getUnsupportedException();
}
/**
* @deprecated INTERNAL
*/
public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
throw getUnsupportedException();
}
/**
* Returns the value as a java.io.InputStream.
* This is only supported if the
* result set was created using a Blob object.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public InputStream getBinaryStream(int columnIndex) throws SQLException {
Blob b = (Blob) get(columnIndex);
return b == null ? null : b.getBinaryStream();
}
/**
* Returns the value as a java.io.InputStream.
* This is only supported if the
* result set was created using a Blob object.
*
* @param columnLabel the column label
* @return the value
*/
public InputStream getBinaryStream(String columnLabel) throws SQLException {
return getBinaryStream(findColumn(columnLabel));
}
/**
* Returns the value as a java.sql.Blob.
* This is only supported if the
* result set was created using a Blob object.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Blob getBlob(int columnIndex) throws SQLException {
Blob b = (Blob) get(columnIndex);
return b == null ? null : b;
}
/**
* Returns the value as a java.sql.Blob.
* This is only supported if the
* result set was created using a Blob object.
*
* @param columnLabel the column label
* @return the value
*/
public Blob getBlob(String columnLabel) throws SQLException {
return getBlob(findColumn(columnLabel));
}
/**
* Returns the value as a boolean.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public boolean getBoolean(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Boolean)) {
o = Boolean.valueOf(o.toString());
}
return o == null ? false : ((Boolean) o).booleanValue();
}
/**
* Returns the value as a boolean.
*
* @param columnLabel the column label
* @return the value
*/
public boolean getBoolean(String columnLabel) throws SQLException {
return getBoolean(findColumn(columnLabel));
}
/**
* Returns the value as a byte.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public byte getByte(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Number)) {
o = Byte.decode(o.toString());
}
return o == null ? 0 : ((Number) o).byteValue();
}
/**
* Returns the value as a byte.
*
* @param columnLabel the column label
* @return the value
*/
public byte getByte(String columnLabel) throws SQLException {
return getByte(findColumn(columnLabel));
}
/**
* Returns the value as a byte array.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public byte[] getBytes(int columnIndex) throws SQLException {
return (byte[]) get(columnIndex);
}
/**
* Returns the value as a byte array.
*
* @param columnLabel the column label
* @return the value
*/
public byte[] getBytes(String columnLabel) throws SQLException {
return getBytes(findColumn(columnLabel));
}
/**
* Returns the value as a java.io.Reader.
* This is only supported for CLOB data.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Reader getCharacterStream(int columnIndex) throws SQLException {
Clob c = (Clob) get(columnIndex);
return c == null ? null : c.getCharacterStream();
}
/**
* Returns the value as a java.io.Reader.
* This is only supported if the
* result set was created using a Clob object.
*
* @param columnLabel the column label
* @return the value
*/
public Reader getCharacterStream(String columnLabel) throws SQLException {
return getCharacterStream(findColumn(columnLabel));
}
/**
* Returns the value as a java.sql.Clob.
* This is only supported if the
* result set was created using a Clob object.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Clob getClob(int columnIndex) throws SQLException {
Clob c = (Clob) get(columnIndex);
return c == null ? null : c;
}
/**
* Returns the value as a java.sql.Clob.
* This is only supported if the
* result set was created using a Clob object.
*
* @param columnLabel the column label
* @return the value
*/
public Clob getClob(String columnLabel) throws SQLException {
return getClob(findColumn(columnLabel));
}
/**
* Returns the value as an java.sql.Date.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Date getDate(int columnIndex) throws SQLException {
return (Date) get(columnIndex);
}
/**
* Returns the value as a java.sql.Date.
*
* @param columnLabel the column label
* @return the value
*/
public Date getDate(String columnLabel) throws SQLException {
return getDate(findColumn(columnLabel));
}
/**
* INTERNAL
*/
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Date getDate(String columnLabel, Calendar cal) throws SQLException {
throw getUnsupportedException();
}
/**
* Returns the value as an double.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public double getDouble(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Number)) {
return Double.parseDouble(o.toString());
}
return o == null ? 0 : ((Number) o).doubleValue();
}
/**
* Returns the value as a double.
*
* @param columnLabel the column label
* @return the value
*/
public double getDouble(String columnLabel) throws SQLException {
return getDouble(findColumn(columnLabel));
}
/**
* Returns the value as a float.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public float getFloat(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Number)) {
return Float.parseFloat(o.toString());
}
return o == null ? 0 : ((Number) o).floatValue();
}
/**
* Returns the value as a float.
*
* @param columnLabel the column label
* @return the value
*/
public float getFloat(String columnLabel) throws SQLException {
return getFloat(findColumn(columnLabel));
}
/**
* Returns the value as an int.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public int getInt(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Number)) {
o = Integer.decode(o.toString());
}
return o == null ? 0 : ((Number) o).intValue();
}
/**
* Returns the value as an int.
*
* @param columnLabel the column label
* @return the value
*/
public int getInt(String columnLabel) throws SQLException {
return getInt(findColumn(columnLabel));
}
/**
* Returns the value as a long.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public long getLong(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Number)) {
o = Long.decode(o.toString());
}
return o == null ? 0 : ((Number) o).longValue();
}
/**
* Returns the value as a long.
*
* @param columnLabel the column label
* @return the value
*/
public long getLong(String columnLabel) throws SQLException {
return getLong(findColumn(columnLabel));
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public Reader getNCharacterStream(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public Reader getNCharacterStream(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public NClob getNClob(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public NClob getNClob(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public String getNString(int columnIndex) throws SQLException {
return getString(columnIndex);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public String getNString(String columnLabel) throws SQLException {
return getString(columnLabel);
}
//*/
/**
* Returns the value as an Object.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Object getObject(int columnIndex) throws SQLException {
return get(columnIndex);
}
/**
* Returns the value as an Object.
*
* @param columnLabel the column label
* @return the value
*/
public Object getObject(String columnLabel) throws SQLException {
return getObject(findColumn(columnLabel));
}
/**
* INTERNAL
*
* @param columnIndex the column index (1, 2, ...)
* @param type the class of the returned value
*/
/*## Java 1.7 ##
public T getObject(int columnIndex, Class type) {
return null;
}
//*/
/**
* INTERNAL
*
* @param columnName the column name
* @param type the class of the returned value
*/
/*## Java 1.7 ##
public T getObject(String columnName, Class type) {
return null;
}
//*/
/**
* INTERNAL
*/
public Object getObject(int columnIndex, Map> map) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Object getObject(String columnLabel, Map> map) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Ref getRef(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Ref getRef(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public RowId getRowId(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public RowId getRowId(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* Returns the value as a short.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public short getShort(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o != null && !(o instanceof Number)) {
o = Short.decode(o.toString());
}
return o == null ? 0 : ((Number) o).shortValue();
}
/**
* Returns the value as a short.
*
* @param columnLabel the column label
* @return the value
*/
public short getShort(String columnLabel) throws SQLException {
return getShort(findColumn(columnLabel));
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public SQLXML getSQLXML(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public SQLXML getSQLXML(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* Returns the value as a String.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public String getString(int columnIndex) throws SQLException {
Object o = get(columnIndex);
if (o == null) {
return null;
}
switch (columns.get(columnIndex - 1).sqlType) {
case Types.CLOB:
Clob c = (Clob) o;
return c.getSubString(1, MathUtils.convertLongToInt(c.length()));
}
return o.toString();
}
/**
* Returns the value as a String.
*
* @param columnLabel the column label
* @return the value
*/
public String getString(String columnLabel) throws SQLException {
return getString(findColumn(columnLabel));
}
/**
* Returns the value as an java.sql.Time.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Time getTime(int columnIndex) throws SQLException {
return (Time) get(columnIndex);
}
/**
* Returns the value as a java.sql.Time.
*
* @param columnLabel the column label
* @return the value
*/
public Time getTime(String columnLabel) throws SQLException {
return getTime(findColumn(columnLabel));
}
/**
* INTERNAL
*/
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Time getTime(String columnLabel, Calendar cal) throws SQLException {
throw getUnsupportedException();
}
/**
* Returns the value as an java.sql.Timestamp.
*
* @param columnIndex (1,2,...)
* @return the value
*/
public Timestamp getTimestamp(int columnIndex) throws SQLException {
return (Timestamp) get(columnIndex);
}
/**
* Returns the value as a java.sql.Timestamp.
*
* @param columnLabel the column label
* @return the value
*/
public Timestamp getTimestamp(String columnLabel) throws SQLException {
return getTimestamp(findColumn(columnLabel));
}
/**
* INTERNAL
*/
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
throw getUnsupportedException();
}
/**
* @deprecated INTERNAL
*/
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
/**
* @deprecated INTERNAL
*/
public InputStream getUnicodeStream(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public URL getURL(int columnIndex) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public URL getURL(String columnLabel) throws SQLException {
throw getUnsupportedException();
}
// ---- update ---------------------------------------------
/**
* INTERNAL
*/
public void updateArray(int columnIndex, Array x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateArray(String columnLabel, Array x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateAsciiStream(int columnIndex, InputStream x)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateAsciiStream(String columnLabel, InputStream x)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateAsciiStream(int columnIndex, InputStream x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateAsciiStream(String columnLabel, InputStream x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBinaryStream(int columnIndex, InputStream x)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBinaryStream(String columnLabel, InputStream x)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBinaryStream(int columnIndex, InputStream x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBinaryStream(String columnLabel, InputStream x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateBlob(int columnIndex, Blob x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateBlob(String columnLabel, Blob x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBlob(int columnIndex, InputStream x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBlob(String columnLabel, InputStream x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBlob(int columnIndex, InputStream x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateBlob(String columnLabel, InputStream x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateBoolean(int columnIndex, boolean x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateBoolean(String columnLabel, boolean x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateByte(int columnIndex, byte x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateByte(String columnLabel, byte x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateCharacterStream(int columnIndex, Reader x)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateCharacterStream(String columnLabel, Reader x)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateCharacterStream(String columnLabel, Reader x, int length) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateCharacterStream(int columnIndex, Reader x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateCharacterStream(String columnLabel, Reader x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateClob(int columnIndex, Clob x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateClob(String columnLabel, Clob x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateClob(int columnIndex, Reader x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateClob(String columnLabel, Reader x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateClob(int columnIndex, Reader x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateClob(String columnLabel, Reader x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateDate(int columnIndex, Date x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateDate(String columnLabel, Date x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateDouble(int columnIndex, double x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateDouble(String columnLabel, double x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateFloat(int columnIndex, float x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateFloat(String columnLabel, float x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateInt(int columnIndex, int x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateInt(String columnLabel, int x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateLong(int columnIndex, long x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateLong(String columnLabel, long x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNCharacterStream(int columnIndex, Reader x)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNCharacterStream(String columnLabel, Reader x)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNCharacterStream(int columnIndex, Reader x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNCharacterStream(String columnLabel, Reader x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNClob(int columnIndex, NClob x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNClob(String columnLabel, NClob x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNClob(int columnIndex, Reader x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNClob(String columnLabel, Reader x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNClob(int columnIndex, Reader x, long length)
throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNClob(String columnLabel, Reader x, long length)
throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNString(int columnIndex, String x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateNString(String columnLabel, String x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateNull(int columnIndex) throws SQLException {
update(columnIndex, null);
}
/**
* INTERNAL
*/
public void updateNull(String columnLabel) throws SQLException {
update(columnLabel, null);
}
/**
* INTERNAL
*/
public void updateObject(int columnIndex, Object x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateObject(String columnLabel, Object x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateObject(int columnIndex, Object x, int scale) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateObject(String columnLabel, Object x, int scale) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateRef(int columnIndex, Ref x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateRef(String columnLabel, Ref x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateRowId(int columnIndex, RowId x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateRowId(String columnLabel, RowId x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateShort(int columnIndex, short x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateShort(String columnLabel, short x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateSQLXML(int columnIndex, SQLXML x) throws SQLException {
update(columnIndex, x);
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public void updateSQLXML(String columnLabel, SQLXML x) throws SQLException {
update(columnLabel, x);
}
//*/
/**
* INTERNAL
*/
public void updateString(int columnIndex, String x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateString(String columnLabel, String x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateTime(int columnIndex, Time x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateTime(String columnLabel, Time x) throws SQLException {
update(columnLabel, x);
}
/**
* INTERNAL
*/
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
update(columnIndex, x);
}
/**
* INTERNAL
*/
public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
update(columnLabel, x);
}
// ---- result set meta data ---------------------------------------------
/**
* Returns the column count.
*
* @return the column count
*/
public int getColumnCount() {
return columns.size();
}
/**
* Returns 15.
*
* @param columnIndex (1,2,...)
* @return 15
*/
public int getColumnDisplaySize(int columnIndex) {
return 15;
}
/**
* Returns the SQL type.
*
* @param columnIndex (1,2,...)
* @return the SQL type
*/
public int getColumnType(int columnIndex) throws SQLException {
return getColumn(columnIndex - 1).sqlType;
}
/**
* Returns the precision.
*
* @param columnIndex (1,2,...)
* @return the precision
*/
public int getPrecision(int columnIndex) throws SQLException {
return getColumn(columnIndex - 1).precision;
}
/**
* Returns the scale.
*
* @param columnIndex (1,2,...)
* @return the scale
*/
public int getScale(int columnIndex) throws SQLException {
return getColumn(columnIndex - 1).scale;
}
/**
* Returns ResultSetMetaData.columnNullableUnknown.
*
* @param columnIndex (1,2,...)
* @return columnNullableUnknown
*/
public int isNullable(int columnIndex) {
return ResultSetMetaData.columnNullableUnknown;
}
/**
* Returns false.
*
* @param columnIndex (1,2,...)
* @return false
*/
public boolean isAutoIncrement(int columnIndex) {
return false;
}
/**
* Returns true.
*
* @param columnIndex (1,2,...)
* @return true
*/
public boolean isCaseSensitive(int columnIndex) {
return true;
}
/**
* Returns false.
*
* @param columnIndex (1,2,...)
* @return false
*/
public boolean isCurrency(int columnIndex) {
return false;
}
/**
* Returns false.
*
* @param columnIndex (1,2,...)
* @return false
*/
public boolean isDefinitelyWritable(int columnIndex) {
return false;
}
/**
* Returns true.
*
* @param columnIndex (1,2,...)
* @return true
*/
public boolean isReadOnly(int columnIndex) {
return true;
}
/**
* Returns true.
*
* @param columnIndex (1,2,...)
* @return true
*/
public boolean isSearchable(int columnIndex) {
return true;
}
/**
* Returns true.
*
* @param columnIndex (1,2,...)
* @return true
*/
public boolean isSigned(int columnIndex) {
return true;
}
/**
* Returns false.
*
* @param columnIndex (1,2,...)
* @return false
*/
public boolean isWritable(int columnIndex) {
return false;
}
/**
* Returns null.
*
* @param columnIndex (1,2,...)
* @return null
*/
public String getCatalogName(int columnIndex) {
return null;
}
/**
* Returns the Java class name if this column.
*
* @param columnIndex (1,2,...)
* @return the class name
*/
public String getColumnClassName(int columnIndex) throws SQLException {
int sqlType = getColumn(columnIndex - 1).sqlType;
int type = DataType.convertSQLTypeToValueType(sqlType);
return DataType.getTypeClassName(type);
}
/**
* Returns the column label.
*
* @param columnIndex (1,2,...)
* @return the column label
*/
public String getColumnLabel(int columnIndex) throws SQLException {
return getColumn(columnIndex - 1).name;
}
/**
* Returns the column name.
*
* @param columnIndex (1,2,...)
* @return the column name
*/
public String getColumnName(int columnIndex) throws SQLException {
return getColumnLabel(columnIndex);
}
/**
* Returns the data type name of a column.
*
* @param columnIndex (1,2,...)
* @return the type name
*/
public String getColumnTypeName(int columnIndex) throws SQLException {
int sqlType = getColumn(columnIndex - 1).sqlType;
int type = DataType.convertSQLTypeToValueType(sqlType);
return DataType.getDataType(type).name;
}
/**
* Returns null.
*
* @param columnIndex (1,2,...)
* @return null
*/
public String getSchemaName(int columnIndex) {
return null;
}
/**
* Returns null.
*
* @param columnIndex (1,2,...)
* @return null
*/
public String getTableName(int columnIndex) {
return null;
}
// ---- unsupported / result set ---------------------------------------------
/**
* INTERNAL
*/
public void afterLast() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void cancelRowUpdates() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void deleteRow() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void insertRow() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void moveToCurrentRow() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void moveToInsertRow() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void refreshRow() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void updateRow() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean first() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean isAfterLast() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean isBeforeFirst() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean isFirst() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean isLast() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean last() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean previous() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean rowDeleted() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean rowInserted() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean rowUpdated() throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void setFetchDirection(int direction) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public void setFetchSize(int rows) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean absolute(int row) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public boolean relative(int offset) throws SQLException {
throw getUnsupportedException();
}
/**
* INTERNAL
*/
public String getCursorName() throws SQLException {
throw getUnsupportedException();
}
// --- private -----------------------------
private void update(int columnIndex, Object obj) throws SQLException {
checkColumnIndex(columnIndex);
this.currentRow[columnIndex - 1] = obj;
}
private void update(String columnLabel, Object obj) throws SQLException {
this.currentRow[findColumn(columnLabel) - 1] = obj;
}
/**
* INTERNAL
*/
static SQLException getUnsupportedException() {
return DbException.get(ErrorCode.FEATURE_NOT_SUPPORTED_1).getSQLException();
}
private void checkColumnIndex(int columnIndex) throws SQLException {
if (columnIndex < 1 || columnIndex > columns.size()) {
throw DbException.getInvalidValueException("columnIndex", columnIndex).getSQLException();
}
}
private Object get(int columnIndex) throws SQLException {
if (currentRow == null) {
throw DbException.get(ErrorCode.NO_DATA_AVAILABLE).getSQLException();
}
checkColumnIndex(columnIndex);
columnIndex--;
Object o = columnIndex < currentRow.length ? currentRow[columnIndex] : null;
wasNull = o == null;
return o;
}
private Column getColumn(int i) throws SQLException {
checkColumnIndex(i + 1);
return columns.get(i);
}
/**
* Returns the current result set holdability.
*
* @return the holdability
*/
public int getHoldability() {
return ResultSet.HOLD_CURSORS_OVER_COMMIT;
}
/**
* Returns whether this result set has been closed.
*
* @return true if the result set was closed
*/
public boolean isClosed() {
return rows == null;
}
/**
* INTERNAL
*/
/*## Java 1.6 ##
public T unwrap(Class iface) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* INTERNAL
*/
/*## Java 1.6 ##
public boolean isWrapperFor(Class> iface) throws SQLException {
throw getUnsupportedException();
}
//*/
/**
* Set the auto-close behavior. If enabled (the default), the result set is
* closed after reading the last row.
*
* @param autoClose the new value
*/
public void setAutoClose(boolean autoClose) {
this.autoClose = autoClose;
}
/**
* Get the current auto-close behavior.
*
* @return the auto-close value
*/
public boolean getAutoClose() {
return autoClose;
}
}