Package org.firebirdsql.jdbc.field
Class FBLongVarCharField
- java.lang.Object
- 
- org.firebirdsql.jdbc.field.FBField
- 
- org.firebirdsql.jdbc.field.FBLongVarCharField
 
 
- 
- All Implemented Interfaces:
- FBFlushableField
 
 public class FBLongVarCharField extends FBField implements FBFlushableField This is Blob-based implementation ofFBStringField. It should be used for fields declared in database asBLOB SUB_TYPE 1. This implementation provides all conversion routinesFBStringFieldhas.- Author:
- Roman Rokytskyy, Mark Rotteveel
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.firebirdsql.jdbc.field.FBFlushableFieldFBFlushableField.CachedObject
 
- 
 - 
Field SummaryFields Modifier and Type Field Description protected intpossibleCharLength- 
Fields inherited from class org.firebirdsql.jdbc.field.FBFieldfieldDescriptor, gdsHelper, requiredType, scale
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close this field.voidflushCachedData()Flush cached data to the database server.java.math.BigDecimalgetBigDecimal()java.math.BigIntegergetBigInteger()java.io.InputStreamgetBinaryStream()java.sql.BlobgetBlob()booleangetBoolean()bytegetByte()byte[]getBytes()byte[]getCachedData()Get cached data.FBFlushableField.CachedObjectgetCachedObject()java.sql.ClobgetClob()java.sql.DategetDate()java.sql.DategetDate(java.util.Calendar cal)doublegetDouble()floatgetFloat()intgetInt()longgetLong()shortgetShort()java.lang.StringgetString()java.sql.TimegetTime()java.sql.TimegetTime(java.util.Calendar cal)java.sql.TimestampgetTimestamp()java.sql.TimestampgetTimestamp(java.util.Calendar cal)voidsetBigDecimal(java.math.BigDecimal value)voidsetBigInteger(java.math.BigInteger value)protected voidsetBinaryStreamInternal(java.io.InputStream in, long length)voidsetBlob(FBBlob blob)voidsetBoolean(boolean value)voidsetByte(byte value)voidsetBytes(byte[] value)voidsetCachedObject(FBFlushableField.CachedObject cachedObject)protected voidsetCharacterStreamInternal(java.io.Reader in, long length)voidsetClob(FBClob clob)voidsetDate(java.sql.Date value)voidsetDate(java.sql.Date value, java.util.Calendar cal)voidsetDouble(double value)voidsetFloat(float value)voidsetInteger(int value)voidsetLong(long value)voidsetNull()voidsetShort(short value)voidsetString(java.lang.String value)voidsetTime(java.sql.Time value)voidsetTime(java.sql.Time value, java.util.Calendar cal)voidsetTimestamp(java.sql.Timestamp value)voidsetTimestamp(java.sql.Timestamp value, java.util.Calendar cal)- 
Methods inherited from class org.firebirdsql.jdbc.field.FBFieldcreateField, getAlias, getArray, getBigDecimal, getCharacterStream, getDatatypeCoder, getDecimal, getDecimal, getFieldData, getName, getObject, getObject, getObject, getObjectConverter, getRawDateTimeStruct, getRef, getRelationName, getRowId, isInvertTimeZone, isNull, isType, setBinaryStream, setBinaryStream, setBinaryStream, setCharacterStream, setCharacterStream, setCharacterStream, setConnection, setDecimal, setFieldData, setObject, setRawDateTimeStruct, setRequiredType, setRowId
 
- 
 
- 
- 
- 
Method Detail- 
closepublic void close() throws java.sql.SQLExceptionDescription copied from class:FBFieldClose this field. This method tells field implementation to release all resources allocated when field methods were called.
 - 
getBlobpublic java.sql.Blob getBlob() throws java.sql.SQLException
 - 
getClobpublic java.sql.Clob getClob() throws java.sql.SQLException
 - 
getBinaryStreampublic java.io.InputStream getBinaryStream() throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
getBytespublic byte[] getBytes() throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
getCachedDatapublic byte[] getCachedData() throws java.sql.SQLExceptionDescription copied from interface:FBFlushableFieldGet cached data.- Specified by:
- getCachedDatain interface- FBFlushableField
- Returns:
- cached object of this field.
- Throws:
- java.sql.SQLException- if something went wrong.
 
 - 
getCachedObjectpublic FBFlushableField.CachedObject getCachedObject() throws java.sql.SQLException - Specified by:
- getCachedObjectin interface- FBFlushableField
- Throws:
- java.sql.SQLException
 
 - 
setCachedObjectpublic void setCachedObject(FBFlushableField.CachedObject cachedObject) throws java.sql.SQLException - Specified by:
- setCachedObjectin interface- FBFlushableField
- Throws:
- java.sql.SQLException
 
 - 
getStringpublic java.lang.String getString() throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
setBlobpublic void setBlob(FBBlob blob) throws java.sql.SQLException 
 - 
setClobpublic void setClob(FBClob clob) throws java.sql.SQLException 
 - 
setCharacterStreamInternalprotected void setCharacterStreamInternal(java.io.Reader in, long length) throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
setStringpublic void setString(java.lang.String value) throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
setBytespublic void setBytes(byte[] value) throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
setBinaryStreamInternalprotected void setBinaryStreamInternal(java.io.InputStream in, long length) throws java.sql.SQLException- Throws:
- java.sql.SQLException
 
 - 
flushCachedDatapublic void flushCachedData() throws java.sql.SQLExceptionDescription copied from interface:FBFlushableFieldFlush cached data to the database server.- Specified by:
- flushCachedDatain interface- FBFlushableField
- Throws:
- java.sql.SQLException- if something went wrong.
 
 - 
getBytepublic byte getByte() throws java.sql.SQLException
 - 
getShortpublic short getShort() throws java.sql.SQLException
 - 
getIntpublic int getInt() throws java.sql.SQLException
 - 
getLongpublic long getLong() throws java.sql.SQLException
 - 
getBigDecimalpublic java.math.BigDecimal getBigDecimal() throws java.sql.SQLException- Overrides:
- getBigDecimalin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
getFloatpublic float getFloat() throws java.sql.SQLException
 - 
getDoublepublic double getDouble() throws java.sql.SQLException
 - 
getBooleanpublic boolean getBoolean() throws java.sql.SQLException- Overrides:
- getBooleanin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
getDatepublic java.sql.Date getDate(java.util.Calendar cal) throws java.sql.SQLException
 - 
getDatepublic java.sql.Date getDate() throws java.sql.SQLException
 - 
getTimepublic java.sql.Time getTime(java.util.Calendar cal) throws java.sql.SQLException
 - 
getTimepublic java.sql.Time getTime() throws java.sql.SQLException
 - 
getTimestamppublic java.sql.Timestamp getTimestamp(java.util.Calendar cal) throws java.sql.SQLException- Overrides:
- getTimestampin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
getTimestamppublic java.sql.Timestamp getTimestamp() throws java.sql.SQLException- Overrides:
- getTimestampin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
getBigIntegerpublic java.math.BigInteger getBigInteger() throws java.sql.SQLException- Overrides:
- getBigIntegerin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
setBytepublic void setByte(byte value) throws java.sql.SQLException
 - 
setShortpublic void setShort(short value) throws java.sql.SQLException
 - 
setIntegerpublic void setInteger(int value) throws java.sql.SQLException- Overrides:
- setIntegerin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
setLongpublic void setLong(long value) throws java.sql.SQLException
 - 
setFloatpublic void setFloat(float value) throws java.sql.SQLException
 - 
setDoublepublic void setDouble(double value) throws java.sql.SQLException
 - 
setBigDecimalpublic void setBigDecimal(java.math.BigDecimal value) throws java.sql.SQLException- Overrides:
- setBigDecimalin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
setBooleanpublic void setBoolean(boolean value) throws java.sql.SQLException- Overrides:
- setBooleanin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
setDatepublic void setDate(java.sql.Date value, java.util.Calendar cal) throws java.sql.SQLException
 - 
setDatepublic void setDate(java.sql.Date value) throws java.sql.SQLException
 - 
setTimepublic void setTime(java.sql.Time value, java.util.Calendar cal) throws java.sql.SQLException
 - 
setTimepublic void setTime(java.sql.Time value) throws java.sql.SQLException
 - 
setTimestamppublic void setTimestamp(java.sql.Timestamp value, java.util.Calendar cal) throws java.sql.SQLException- Overrides:
- setTimestampin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
setTimestamppublic void setTimestamp(java.sql.Timestamp value) throws java.sql.SQLException- Overrides:
- setTimestampin class- FBField
- Throws:
- java.sql.SQLException
 
 - 
setBigIntegerpublic void setBigInteger(java.math.BigInteger value) throws java.sql.SQLException- Overrides:
- setBigIntegerin class- FBField
- Throws:
- java.sql.SQLException
 
 
- 
 
-