org.firebirdsql.jdbc.field.FBNullField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird-jdk18 Show documentation
Show all versions of jaybird-jdk18 Show documentation
JDBC Driver for the Firebird RDBMS
/*
* 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.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.SQLException;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
/**
* FBField implementation for NULL fields (eg in condition ? IS NULL).
*
* @author Mark Rotteveel
*/
final class FBNullField extends FBField {
private static final String NULL_CONVERSION_ERROR = "Received non-NULL value of a NULL field.";
private static final byte[] DUMMY_OBJECT = new byte[0];
FBNullField(FieldDescriptor fieldDescriptor, FieldDataProvider dataProvider, int requiredType) throws SQLException {
super(fieldDescriptor, dataProvider, requiredType);
}
@Override
public Object getObject() throws SQLException {
checkNull();
return null;
}
@Override
public void setObject(Object value) throws SQLException {
if (value == null)
setNull();
else
setDummyObject();
}
// TODO set/getClob and set/getBlob are missing, relevant to add?
private void setDummyObject() {
setFieldData(DUMMY_OBJECT);
}
private void checkNull() throws SQLException {
if (isNull()) {
throw new TypeConversionException(NULL_CONVERSION_ERROR);
}
}
// ----- Math code
public byte getByte() throws SQLException {
checkNull();
return BYTE_NULL_VALUE;
}
public short getShort() throws SQLException {
checkNull();
return SHORT_NULL_VALUE;
}
public int getInt() throws SQLException {
checkNull();
return INT_NULL_VALUE;
}
public long getLong() throws SQLException {
checkNull();
return LONG_NULL_VALUE;
}
public BigDecimal getBigDecimal() throws SQLException {
checkNull();
return null;
}
public float getFloat() throws SQLException {
checkNull();
return FLOAT_NULL_VALUE;
}
public double getDouble() throws SQLException {
checkNull();
return DOUBLE_NULL_VALUE;
}
// ----- getBoolean, getString and getObject code
public boolean getBoolean() throws SQLException {
checkNull();
return BOOLEAN_NULL_VALUE;
}
public String getString() throws SQLException {
checkNull();
return null;
}
// ----- getXXXStream code
public InputStream getBinaryStream() throws SQLException {
checkNull();
return null;
}
public byte[] getBytes() throws SQLException {
checkNull();
return null;
}
// ----- getDate, getTime and getTimestamp code
public Date getDate(Calendar cal) throws SQLException {
checkNull();
return null;
}
public Date getDate() throws SQLException {
checkNull();
return null;
}
public Time getTime(Calendar cal) throws SQLException {
checkNull();
return null;
}
public Time getTime() throws SQLException {
checkNull();
return null;
}
public Timestamp getTimestamp(Calendar cal) throws SQLException {
checkNull();
return null;
}
public Timestamp getTimestamp() throws SQLException {
checkNull();
return null;
}
// --- setXXX methods
public void setByte(byte value) throws SQLException {
setDummyObject();
}
public void setShort(short value) throws SQLException {
setDummyObject();
}
public void setInteger(int value) throws SQLException {
setDummyObject();
}
public void setLong(long value) throws SQLException {
setDummyObject();
}
public void setFloat(float value) throws SQLException {
setDummyObject();
}
public void setDouble(double value) throws SQLException {
setDummyObject();
}
public void setBigDecimal(BigDecimal value) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
// ----- setBoolean, setObject and setObject code
public void setBoolean(boolean value) throws SQLException {
setDummyObject();
}
// ----- setXXXStream code
@Override
protected void setBinaryStreamInternal(InputStream in, long length) throws SQLException {
if (in == null) {
setNull();
return;
}
// TODO Do we need to consume and/or close streams?
setDummyObject();
}
@Override
protected void setCharacterStreamInternal(Reader in, long length) throws SQLException {
if (in == null) {
setNull();
return;
}
// TODO Do we need to consume and/or close streams?
setDummyObject();
}
public void setBytes(byte[] value) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
// ----- setDate, setTime and setTimestamp code
public void setDate(Date value, Calendar cal) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
public void setDate(Date value) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
public void setTime(Time value, Calendar cal) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
public void setTime(Time value) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
public void setTimestamp(Timestamp value, Calendar cal) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
public void setTimestamp(Timestamp value) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
@Override
public void setString(String value) throws SQLException {
if (value == null) {
setNull();
return;
}
setDummyObject();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy