org.firebirdsql.jdbc.field.FBShortField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird-jdk17 Show documentation
Show all versions of jaybird-jdk17 Show documentation
JDBC Driver for the Firebird RDBMS
/*
* Firebird Open Source J2ee connector - jdbc driver
*
* Distributable under LGPL license.
* You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* LGPL License for more details.
*
* This file was created by members of the firebird development team.
* All individual contributions remain the Copyright (C) of those
* individuals. Contributors to this file are either listed here or
* can be obtained from a CVS history command.
*
* All rights reserved.
*/
package org.firebirdsql.jdbc.field;
import org.firebirdsql.gds.XSQLVAR;
import java.math.BigDecimal;
import java.sql.SQLException;
/**
* This class represents a field of type SHORT and performs all necessary
* conversions.
* @author Roman Rokytskyy
* @author David Jencks
* @version 1.0
*/
class FBShortField extends FBField {
FBShortField(XSQLVAR field, FieldDataProvider dataProvider, int requiredType)
throws SQLException
{
super(field, dataProvider, requiredType);
}
public byte getByte() throws SQLException {
if (getFieldData()==null) return BYTE_NULL_VALUE;
Short value = new Short(field.decodeShort(getFieldData()));
// check if value is withing bounds
if (value.shortValue() > MAX_BYTE_VALUE ||
value.shortValue() < MIN_BYTE_VALUE)
throw (SQLException)createException(
BYTE_CONVERSION_ERROR+" "+value).fillInStackTrace();
return value.byteValue();
}
public short getShort() throws SQLException {
if (getFieldData()==null) return SHORT_NULL_VALUE;
return field.decodeShort(getFieldData());
}
public int getInt() throws SQLException {
if (getFieldData()==null) return INT_NULL_VALUE;
return field.decodeShort(getFieldData());
}
public long getLong() throws SQLException {
if (getFieldData()==null) return LONG_NULL_VALUE;
return field.decodeShort(getFieldData());
}
public float getFloat() throws SQLException {
if (getFieldData()==null) return FLOAT_NULL_VALUE;
return field.decodeShort(getFieldData());
}
public double getDouble() throws SQLException {
if (getFieldData()==null) return DOUBLE_NULL_VALUE;
return field.decodeShort(getFieldData());
}
public BigDecimal getBigDecimal() throws SQLException {
if (getFieldData()==null) return BIGDECIMAL_NULL_VALUE;
return BigDecimal.valueOf(field.decodeShort(getFieldData()));
}
/*
public Object getObject() throws SQLException {
if (getFieldData()==null) return OBJECT_NULL_VALUE;
return new Short(field.decodeShort(getFieldData()));
}
*/
public boolean getBoolean() throws SQLException {
if (getFieldData()==null) return BOOLEAN_NULL_VALUE;
return field.decodeShort(getFieldData()) == 1;
}
public String getString() throws SQLException {
if (getFieldData()==null) return STRING_NULL_VALUE;
return String.valueOf(field.decodeShort(getFieldData()));
}
//--- setXXX methods
public void setString(String value) throws SQLException {
if (value == STRING_NULL_VALUE) {
setNull();
return;
}
try {
setShort(Short.parseShort(value));
} catch(NumberFormatException nfex) {
throw (SQLException)createException(
SHORT_CONVERSION_ERROR+" "+value).fillInStackTrace();
}
}
public void setShort(short value) throws SQLException {
setFieldData(field.encodeShort(value));
}
public void setBoolean(boolean value) throws SQLException {
setShort((short)(value ? 1 : 0));
}
public void setFloat(float value) throws SQLException {
// check if value is within bounds
if (value > MAX_SHORT_VALUE ||
value < MIN_SHORT_VALUE)
throw (SQLException)createException(
LONG_CONVERSION_ERROR+" "+value).fillInStackTrace();
setShort((short)value);
}
public void setDouble(double value) throws SQLException {
// check if value is within bounds
if (value > MAX_SHORT_VALUE ||
value < MIN_SHORT_VALUE)
throw (SQLException)createException(
DOUBLE_CONVERSION_ERROR+" "+value).fillInStackTrace();
setShort((short)value);
}
public void setLong(long value) throws SQLException {
// check if value is within bounds
if (value > MAX_SHORT_VALUE ||
value < MIN_SHORT_VALUE)
throw (SQLException)createException(
LONG_CONVERSION_ERROR+" "+value).fillInStackTrace();
setShort((short)value);
}
public void setInteger(int value) throws SQLException {
// check if value is within bounds
if (value > MAX_SHORT_VALUE ||
value < MIN_SHORT_VALUE)
throw (SQLException)createException(
LONG_CONVERSION_ERROR+" "+value).fillInStackTrace();
setShort((short)value);
}
public void setByte(byte value) throws SQLException {
setShort((short)value);
}
public void setBigDecimal(BigDecimal value) throws SQLException {
if (value == BIGDECIMAL_NULL_VALUE) {
setNull();
return;
}
// check if value is within bounds
if (value.compareTo(BigDecimal.valueOf(MAX_SHORT_VALUE)) > 0 ||
value.compareTo(BigDecimal.valueOf(MIN_SHORT_VALUE)) < 0)
throw (SQLException)createException(
BIGDECIMAL_CONVERSION_ERROR+" "+value).fillInStackTrace();
setShort(value.shortValue());
}
}