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.
com.treasuredata.jdbc.TDResultSetBase Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package com.treasuredata.jdbc;
import org.msgpack.type.ArrayValue;
import org.msgpack.type.BooleanValue;
import org.msgpack.type.FloatValue;
import org.msgpack.type.IntegerValue;
import org.msgpack.type.MapValue;
import org.msgpack.type.NilValue;
import org.msgpack.type.NumberValue;
import org.msgpack.type.RawValue;
import org.msgpack.type.Value;
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.NClob;
import java.sql.Ref;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.SQLXML;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.List;
import java.util.Map;
/**
* Data independed base class which implements the common part of all
* resultsets.
*/
public abstract class TDResultSetBase
implements ResultSet
{
private static final String INTVALUE_CLASSNAME = "org.msgpack.type.IntValueImpl";
private static final String LONGVALUE_CLASSNAME = "org.msgpack.type.LongValueImpl";
private static final String DOUBLEVALUE_CLASSNAME = "org.msgpack.type.DoubleValueImpl";
private static final String FLOATVALUE_CLASSNAME = "org.msgpack.type.FloatValueImpl";
protected SQLWarning warningChain = null;
protected boolean wasNull = false;
protected List row;
protected List columnNames;
protected List columnTypes;
protected TDStatementBase statement = null;
public boolean absolute(int row)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#absolute(int)"));
}
public void afterLast()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#afterLast()"));
}
public void beforeFirst()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#beforeFirst()"));
}
public void cancelRowUpdates()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#cancelRowUpdates()"));
}
public void deleteRow()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#deleteRow()"));
}
public int findColumn(String columnName)
throws SQLException
{
int columnIndex = columnNames.indexOf(columnName);
if (columnIndex == -1) {
throw new SQLException("columnIndex: -1");
}
else {
return ++columnIndex;
}
}
public boolean first()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#first()"));
}
public InputStream getAsciiStream(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getAsciiStream(int)"));
}
public InputStream getAsciiStream(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getAsciiStream(String)"));
}
public InputStream getBinaryStream(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBinaryStream(int)"));
}
public InputStream getBinaryStream(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBinaryStream(String)"));
}
public Reader getCharacterStream(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getCharacterStream(String)"));
}
public Reader getCharacterStream(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getCharacterStream(String)"));
}
public Reader getNCharacterStream(int index)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getNCharacterStream(int)"));
}
public Reader getNCharacterStream(String name)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getNCharacterStream(String)"));
}
public Array getArray(int i)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getArray(int)"));
}
public Array getArray(String colName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getArray(String)"));
}
public BigDecimal getBigDecimal(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBigDecimal(int)"));
}
public BigDecimal getBigDecimal(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBigDecimal(String)"));
}
public BigDecimal getBigDecimal(int columnIndex, int scale)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBigDecimal(int, int)"));
}
public BigDecimal getBigDecimal(String columnName, int scale)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBigDecimal(String, int)"));
}
public Blob getBlob(int i)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBlob(int)"));
}
public Blob getBlob(String colName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBlob(String)"));
}
public boolean getBoolean(int index)
throws SQLException
{
return this.getBooleanWithTypeConversion(index);
}
public boolean getBoolean(String name)
throws SQLException
{
return getBoolean(findColumn(name));
}
private boolean getBooleanWithTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns false.
if (obj == null || obj instanceof NilValue) {
return false;
}
if (obj instanceof BooleanValue) { // msgpack's Boolean type
return ((BooleanValue) obj).getBoolean();
}
else if (obj instanceof Boolean) { // java's Boolean type
return ((Boolean) obj).booleanValue();
}
else if (obj instanceof NumberValue) { // msgpack's Number type
return ((NumberValue) obj).asIntegerValue().intValue() != 0;
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).intValue() != 0;
}
else if (obj instanceof RawValue) { // msgpack's raw type
return parseStringToBoolean(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return parseStringToBoolean((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to boolean",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
private static boolean parseStringToBoolean(String from)
{
if (from.toLowerCase().equals("false")) {
return false;
}
else {
return true;
}
}
public byte getByte(int index)
throws SQLException
{
return getByteWithImplicitTypeConversion(index);
}
public byte getByte(String name)
throws SQLException
{
return getByte(findColumn(name));
}
private byte getByteWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns 0.
if (obj == null || obj instanceof NilValue) {
return 0;
}
if (obj instanceof NumberValue) { // msgpack's Number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return (byte) ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return (byte) ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return (byte) ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return (byte) ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).byteValue();
}
else if (obj instanceof RawValue) { // msgpack's raw type
return Byte.parseByte(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return Byte.parseByte((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to byte",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
public byte[] getBytes(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBytes(int)"));
}
public byte[] getBytes(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getBytes(String)"));
}
public Clob getClob(int i)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getClob(int)"));
}
public Clob getClob(String colName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getClob(String)"));
}
public NClob getNClob(int index)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getNClob(int)"));
}
public NClob getNClob(String columnLabel)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getNClob(String)"));
}
public String getNString(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getNString(int)"));
}
public String getNString(String columnLabel)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getNString(String)"));
}
public int getConcurrency()
throws SQLException
{
return ResultSet.CONCUR_READ_ONLY;
}
public String getCursorName()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getCursorName()"));
}
public Date getDate(int index)
throws SQLException
{
// TODO should implement more carefully
// TODO
Object obj = getObject(index);
// if obj is NULL (NilValue), it returns null.
if (obj == null || obj instanceof NilValue) {
return null;
}
try {
return Date.valueOf(((Value) obj).asRawValue().getString());
}
catch (Exception e) {
String msg = String.format(
"Cannot convert column %d to date: %s",
index, e.toString());
throw new SQLException(msg);
}
}
public Date getDate(String columnName)
throws SQLException
{
return getDate(findColumn(columnName));
}
public Date getDate(int columnIndex, Calendar cal)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getDate(int, Calendar)"));
}
public Date getDate(String columnName, Calendar cal)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getDate(String, Calendar)"));
}
public double getDouble(int index)
throws SQLException
{
return getDoubleWithImplicitTypeConversion(index);
}
public double getDouble(String name)
throws SQLException
{
return getDouble(findColumn(name));
}
private double getDoubleWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns 0.0.
if (obj == null || obj instanceof NilValue) {
return 0.0;
}
if (obj instanceof NumberValue) { // msgpack's Number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return (double) ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return (double) ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return (double) ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return (double) ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).doubleValue();
}
else if (obj instanceof RawValue) { // msgpack's raw type
return Double.parseDouble(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return Double.parseDouble((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to double",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
public int getFetchDirection()
throws SQLException
{
return ResultSet.FETCH_FORWARD;
}
public int getFetchSize()
throws SQLException
{
throw new SQLException("Method not supported");
}
public float getFloat(int index)
throws SQLException
{
return getFloatWithImplicitTypeConversion(index);
}
public float getFloat(String name)
throws SQLException
{
return getFloat(findColumn(name));
}
private float getFloatWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns 0.0f.
if (obj == null || obj instanceof NilValue) {
return 0.0f;
}
if (obj instanceof NumberValue) { // msgpack's Number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return (float) ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return (float) ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return (float) ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return (float) ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).floatValue();
}
else if (obj instanceof RawValue) { // msgpack's raw type
return Float.parseFloat(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return Float.parseFloat((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to float",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
public int getHoldability()
throws SQLException
{
throw new SQLException("Method not supported");
}
public int getInt(int index)
throws SQLException
{
return getIntWithImplicitTypeConversion(index);
}
public int getInt(String name)
throws SQLException
{
return getInt(findColumn(name));
}
private int getIntWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns 0.
if (obj == null || obj instanceof NilValue) {
return 0;
}
if (obj instanceof NumberValue) { // msgpack's Number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return (int) ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return (int) ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return (int) ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).intValue();
}
else if (obj instanceof RawValue) { // msgpack's raw type
return Integer.parseInt(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return Integer.parseInt((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to integer",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
public long getLong(int index)
throws SQLException
{
return getLongWithImplicitTypeConversion(index);
}
public long getLong(String name)
throws SQLException
{
return getLong(findColumn(name));
}
private long getLongWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns 0.
if (obj == null || obj instanceof NilValue) {
return 0;
}
if (obj instanceof NumberValue) { // msgpack's Number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return (long) ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return (long) ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return (long) ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return (long) ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).longValue();
}
else if (obj instanceof RawValue) { // msgpack's raw type
return Long.parseLong(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return Long.parseLong((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to long",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
public ResultSetMetaData getMetaData()
throws SQLException
{
return new TDResultSetMetaData(columnNames, columnTypes);
}
public Object getObject(int columnIndex)
throws SQLException
{
if (row == null) {
throw new SQLException("No row found. If you don't call ResultSet#next method, please call it before calling getObject method to fetch rows.");
}
if (columnIndex > row.size()) {
throw new SQLException("Invalid columnIndex: " + columnIndex);
}
try {
wasNull = false;
if (row.get(columnIndex - 1) == null) {
wasNull = true;
}
return row.get(columnIndex - 1);
}
catch (Exception e) {
throw new SQLException(e.toString());
}
}
public Object getObject(String columnName)
throws SQLException
{
return getObject(findColumn(columnName));
}
public Object getObject(int i, Map> map)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getObject(int, Map)"));
}
public Object getObject(String colName, Map> map)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getObject(String, Map)"));
}
public Ref getRef(int i)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getRef(int)"));
}
public Ref getRef(String colName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getRef(String)"));
}
public int getRow()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getRow(int)"));
}
public RowId getRowId(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getRowId(int)"));
}
public RowId getRowId(String columnLabel)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getRowId(String)"));
}
public SQLXML getSQLXML(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getSQLXML(int)"));
}
public SQLXML getSQLXML(String columnLabel)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getSQLXML(String)"));
}
public short getShort(int index)
throws SQLException
{
return getShortWithImplicitTypeConversion(index);
}
public short getShort(String name)
throws SQLException
{
return getShort(findColumn(name));
}
private short getShortWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns 0.
if (obj == null || obj instanceof NilValue) {
return 0;
}
if (obj instanceof NumberValue) { // msgpack's Number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return (short) ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return (short) ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return (short) ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return (short) ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's Number type
return ((Number) obj).shortValue();
}
else if (obj instanceof RawValue) { // msgpack's raw type
return Short.parseShort(((RawValue) obj).getString());
}
else if (obj instanceof String) { // java's raw type
return Short.parseShort((String) obj);
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to byte",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
void setStatement(TDStatementBase stat)
{
statement = stat;
}
public Statement getStatement()
throws SQLException
{
return statement;
}
/**
* @param index - the first column is 1, the second is 2, ...
* @see java.sql.ResultSet#getString(int)
*/
public String getString(int index)
throws SQLException
{
return getStringWithImplicitTypeConversion(index);
}
public String getString(String name)
throws SQLException
{
return getString(findColumn(name));
}
public String getStringWithImplicitTypeConversion(int index)
throws SQLException
{
Throwable e = null;
Object obj = null;
try {
obj = getObject(index);
// if obj is null or NULL value (NilValue), it returns null.
if (obj == null || obj instanceof NilValue) {
return null;
}
if (obj instanceof MapValue) { // msgpack's map type
return ((MapValue) obj).toString();
}
else if (obj instanceof ArrayValue) { // msgpack's array type
return ((ArrayValue) obj).toString();
}
else if (obj instanceof NumberValue) { // msgpack's number type
NumberValue v = (NumberValue) obj;
if (v instanceof IntegerValue) {
if (v.getClass().getName().equals(INTVALUE_CLASSNAME)) {
return "" + ((IntegerValue) v).getInt();
}
else if (v.getClass().getName().equals(LONGVALUE_CLASSNAME)) {
return "" + ((IntegerValue) v).getLong();
}
}
else {
if (v.getClass().getName().equals(DOUBLEVALUE_CLASSNAME)) {
return "" + ((FloatValue) v).doubleValue();
}
else if (v.getClass().getName().equals(FLOATVALUE_CLASSNAME)) {
return "" + ((FloatValue) v).floatValue();
}
}
}
else if (obj instanceof Number) { // java's number type
Number v = (Number) obj;
if (v instanceof Byte) {
return "" + ((Byte) v).byteValue();
}
else if (v instanceof Double) {
return "" + ((Double) v).doubleValue();
}
else if (v instanceof Float) {
return "" + ((Float) v).floatValue();
}
else if (v instanceof Integer) {
return "" + ((Integer) v).intValue();
}
else if (v instanceof Short) {
return "" + ((Short) v).shortValue();
}
}
else if (obj instanceof RawValue) { // msgpack's raw type
return ((Value) obj).asRawValue().getString();
}
else { // java's raw type
return (String) obj;
}
}
catch (Throwable t) {
e = t;
}
// implicit type conversion failed
String msg = String.format(
"Cannot convert column %d from value of %s class to string",
index, obj);
if (e != null) {
throw new SQLException(msg, e);
}
else {
throw new SQLException(msg);
}
}
public Time getTime(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getTime(int)"));
}
public Time getTime(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getTime(String)"));
}
public Time getTime(int columnIndex, Calendar cal)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getTime(int, Calendar)"));
}
public Time getTime(String columnName, Calendar cal)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getTime(String, Calendar)"));
}
public Timestamp getTimestamp(int index)
throws SQLException
{
Object obj = getObject(index);
// if obj is NULL (NilValue), it returns null.
if (obj == null || obj instanceof NilValue) {
return null;
}
try {
String type = columnTypes.get(index - 1);
if (type.equalsIgnoreCase("timestamp")) {
return Timestamp.valueOf(((Value) obj).asRawValue().getString());
}
else {
throw new IllegalArgumentException(
"Expected column to be a timestamp type but is " + type);
}
}
catch (Exception e) {
String msg = String.format(
"Cannot convert column %d to date: %s",
index, e.toString());
throw new SQLException(msg);
}
}
public Timestamp getTimestamp(String name)
throws SQLException
{
return getTimestamp(findColumn(name));
}
public Timestamp getTimestamp(int columnIndex, Calendar cal)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getTimestamp(int, Calendar)"));
}
public Timestamp getTimestamp(String columnName, Calendar cal)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getTimestamp(String, Calendar)"));
}
public int getType()
throws SQLException
{
return ResultSet.TYPE_FORWARD_ONLY;
}
public URL getURL(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getURL(int)"));
}
public URL getURL(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getURL(String)"));
}
public InputStream getUnicodeStream(int columnIndex)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getUnicodeStream(int)"));
}
public InputStream getUnicodeStream(String columnName)
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#getUnicodeStream(String)"));
}
public void insertRow()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#insertRow()"));
}
public boolean isAfterLast()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#isAfterLast()"));
}
public boolean isLast()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#isLast()"));
}
public boolean last()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#last()"));
}
public boolean isBeforeFirst()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#isBeforeFirst()"));
}
public boolean isFirst()
throws SQLException
{
throw new SQLException(new UnsupportedOperationException(
"TDResultSetBase#isFirst()"));
}
public boolean isClosed()
throws SQLException
{
return false;
}
public void moveToCurrentRow()
throws SQLException
{
throw new SQLException("Method not supported");
}
public void moveToInsertRow()
throws SQLException
{
throw new SQLException("Method not supported");
}
public boolean previous()
throws SQLException
{
throw new SQLException("Method not supported");
}
public void refreshRow()
throws SQLException
{
throw new SQLException("Method not supported");
}
public boolean relative(int rows)
throws SQLException
{
throw new SQLException("Method not supported");
}
public boolean rowDeleted()
throws SQLException
{
throw new SQLException("Method not supported");
}
public boolean rowInserted()
throws SQLException
{
throw new SQLException("Method not supported");
}
public boolean rowUpdated()
throws SQLException
{
throw new SQLException("Method not supported");
}
public void setFetchDirection(int direction)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void setFetchSize(int rows)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateArray(int columnIndex, Array x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateArray(String columnName, Array x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateAsciiStream(int columnIndex, InputStream x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateAsciiStream(String columnLabel, InputStream x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateAsciiStream(int columnIndex, InputStream x, int length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateAsciiStream(String columnName, InputStream x, int length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateAsciiStream(int columnIndex, InputStream x, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateAsciiStream(String columnLabel, InputStream x, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBigDecimal(int columnIndex, BigDecimal x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBigDecimal(String columnName, BigDecimal x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBinaryStream(int columnIndex, InputStream x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBinaryStream(String columnLabel, InputStream x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBinaryStream(int columnIndex, InputStream x, int length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBinaryStream(String columnName, InputStream x, int length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBinaryStream(int columnIndex, InputStream x, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBinaryStream(String columnLabel, InputStream x,
long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBlob(int columnIndex, Blob x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBlob(String columnName, Blob x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBlob(int columnIndex, InputStream inputStream)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBlob(String columnLabel, InputStream inputStream)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBlob(int columnIndex, InputStream inputStream, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBlob(String columnLabel, InputStream inputStream,
long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBoolean(int columnIndex, boolean x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBoolean(String columnName, boolean x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateByte(int columnIndex, byte x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateByte(String columnName, byte x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBytes(int columnIndex, byte[] x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateBytes(String columnName, byte[] x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateCharacterStream(int columnIndex, Reader x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateCharacterStream(String columnLabel, Reader reader)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateCharacterStream(int columnIndex, Reader x, int length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateCharacterStream(String columnName, Reader reader,
int length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateCharacterStream(int columnIndex, Reader x, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateCharacterStream(String columnLabel, Reader reader,
long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateClob(int columnIndex, Clob x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateClob(String columnName, Clob x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateClob(int columnIndex, Reader reader)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateClob(String columnLabel, Reader reader)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateClob(int columnIndex, Reader reader, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateClob(String columnLabel, Reader reader, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateDate(int columnIndex, Date x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateDate(String columnName, Date x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateDouble(int columnIndex, double x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateDouble(String columnName, double x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateFloat(int columnIndex, float x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateFloat(String columnName, float x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateInt(int columnIndex, int x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateInt(String columnName, int x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateLong(int columnIndex, long x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateLong(String columnName, long x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNCharacterStream(int columnIndex, Reader x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNCharacterStream(String columnLabel, Reader reader)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNCharacterStream(int columnIndex, Reader x, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNCharacterStream(String columnLabel, Reader reader,
long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNClob(int columnIndex, NClob clob)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNClob(String columnLabel, NClob clob)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNClob(int columnIndex, Reader reader)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNClob(String columnLabel, Reader reader)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNClob(int columnIndex, Reader reader, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNClob(String columnLabel, Reader reader, long length)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNString(int columnIndex, String string)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNString(String columnLabel, String string)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNull(int columnIndex)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateNull(String columnName)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateObject(int columnIndex, Object x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateObject(String columnName, Object x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateObject(int columnIndex, Object x, int scale)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateObject(String columnName, Object x, int scale)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateRef(int columnIndex, Ref x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateRef(String columnName, Ref x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateRow()
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateRowId(int columnIndex, RowId x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateRowId(String columnLabel, RowId x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateSQLXML(int columnIndex, SQLXML xmlObject)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateSQLXML(String columnLabel, SQLXML xmlObject)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateShort(int columnIndex, short x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateShort(String columnName, short x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateString(int columnIndex, String x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateString(String columnName, String x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateTime(int columnIndex, Time x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateTime(String columnName, Time x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateTimestamp(int columnIndex, Timestamp x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public void updateTimestamp(String columnName, Timestamp x)
throws SQLException
{
throw new SQLException("Method not supported");
}
public SQLWarning getWarnings()
throws SQLException
{
return warningChain;
}
public void clearWarnings()
throws SQLException
{
warningChain = null;
}
public boolean wasNull()
throws SQLException
{
return wasNull;
}
public boolean isWrapperFor(Class> iface)
throws SQLException
{
throw new SQLException("Method not supported");
}
public T unwrap(Class iface)
throws SQLException
{
throw new SQLException("Method not supported");
}
}