org.firebirdsql.jdbc.field.FBBooleanField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
/*
* $Id$
*
* Firebird Open Source JavaEE 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 source control history command.
*
* All rights reserved.
*/
package org.firebirdsql.jdbc.field;
import org.firebirdsql.gds.ng.fields.FieldDescriptor;
import java.math.BigDecimal;
import java.sql.SQLException;
/**
* {@link FBField} implementation for {@link java.sql.Types#BOOLEAN} (Firebird type {@link org.firebirdsql.gds.ISCConstants#SQL_BOOLEAN}).
*
* This field type is only supported on Firebird 3.0
*
*
* @author Mark Rotteveel
* @since 2.2.4
*/
final class FBBooleanField extends FBField {
// TODO Evaluate current choices for truth values for non-boolean types (especially if number types != 0 are all true)
FBBooleanField(FieldDescriptor fieldDescriptor, FieldDataProvider dataProvider, int requiredType)
throws SQLException {
super(fieldDescriptor, dataProvider, requiredType);
}
@Override
public Object getObject() throws SQLException {
if (isNull()) return null;
return getBoolean();
}
public byte getByte() throws SQLException {
if (isNull()) {
return BYTE_NULL_VALUE;
}
return (byte) (getBoolean() ? 1 : 0);
}
public short getShort() throws SQLException {
return getByte();
}
public int getInt() throws SQLException {
if (isNull()) {
return INT_NULL_VALUE;
}
return getBoolean() ? 1 : 0;
}
public long getLong() throws SQLException {
return getInt();
}
public float getFloat() throws SQLException {
return getInt();
}
public double getDouble() throws SQLException {
return getInt();
}
public BigDecimal getBigDecimal() throws SQLException {
if (isNull()) return null;
return getBoolean() ? BigDecimal.ONE : BigDecimal.ZERO;
}
public String getString() throws SQLException {
if (isNull()) return null;
return getBoolean() ? FBStringField.LONG_TRUE : FBStringField.LONG_FALSE;
}
public boolean getBoolean() throws SQLException {
if (isNull()) return BOOLEAN_NULL_VALUE;
return getDatatypeCoder().decodeBoolean(getFieldData());
}
public void setByte(byte value) throws SQLException {
setBoolean(value != 0);
}
public void setShort(short value) throws SQLException {
setBoolean(value != 0);
}
public void setInteger(int value) throws SQLException {
setBoolean(value != 0);
}
public void setLong(long value) throws SQLException {
setBoolean(value != 0);
}
public void setFloat(float value) throws SQLException {
//TODO What if NaN?
setBoolean(value != 0);
}
public void setDouble(double value) throws SQLException {
//TODO What if NaN?
setBoolean(value != 0);
}
public void setBigDecimal(BigDecimal value) throws SQLException {
if (value == null) {
setNull();
} else {
setBoolean(value.compareTo(BigDecimal.ZERO) != 0);
}
}
/**
* {@inheritDoc}
*
* Uses similar rules as {@link org.firebirdsql.jdbc.field.FBStringField#getBoolean()}. Sets this boolean to true for (case insensitive, ignoring whitespace):
*
* - true
* - Y
* - T
* - 1
*
* Sets to false for all other values.
*
*/
public void setString(String value) throws SQLException {
if (value == null) {
setNull();
} else {
final String trimmedValue = value.trim();
setBoolean(trimmedValue.equalsIgnoreCase(FBStringField.LONG_TRUE)
|| trimmedValue.equalsIgnoreCase(FBStringField.SHORT_TRUE)
|| trimmedValue.equalsIgnoreCase(FBStringField.SHORT_TRUE_2)
|| trimmedValue.equalsIgnoreCase(FBStringField.SHORT_TRUE_3));
}
}
public void setBoolean(boolean value) throws SQLException {
setFieldData(getDatatypeCoder().encodeBoolean(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy