Class ValueClob
Implementation of the CHARACTER LARGE OBJECT data type.
-
Field Summary
Fields inherited from class ValueLob
BLOCK_COMPARISON_SIZE, charLength, lobData, octetLengthFields inherited from class Value
ARRAY, ASSIGN_TO, BIGINT, BINARY, BLOB, BOOLEAN, CAST_TO, CHAR, CLOB, CONVERT_TO, DATE, DECFLOAT, DOUBLE, EMPTY_VALUES, ENUM, GEOMETRY, GROUP_BINARY_STRING, GROUP_BOOLEAN, GROUP_CHARACTER_STRING, GROUP_COLLECTION, GROUP_DATETIME, GROUP_INTERVAL_DT, GROUP_INTERVAL_YM, GROUP_NULL, GROUP_NUMERIC, GROUP_OTHER, GROUPS, INTEGER, INTERVAL_DAY, INTERVAL_DAY_TO_HOUR, INTERVAL_DAY_TO_MINUTE, INTERVAL_DAY_TO_SECOND, INTERVAL_HOUR, INTERVAL_HOUR_TO_MINUTE, INTERVAL_HOUR_TO_SECOND, INTERVAL_MINUTE, INTERVAL_MINUTE_TO_SECOND, INTERVAL_MONTH, INTERVAL_SECOND, INTERVAL_YEAR, INTERVAL_YEAR_TO_MONTH, JAVA_OBJECT, JSON, MAX_LONG_DECIMAL, MIN_LONG_DECIMAL, NULL, NUMERIC, REAL, ROW, SMALLINT, TIME, TIME_TZ, TIMESTAMP, TIMESTAMP_TZ, TINYINT, TYPE_COUNT, UNKNOWN, UUID, VARBINARY, VARCHAR, VARCHAR_IGNORECASEFields inherited from interface HasSQL
ADD_PLAN_INFORMATION, DEFAULT_SQL_FLAGS, NO_CASTS, QUOTE_ONLY_WHEN_REQUIRED, REPLACE_LOBS_FOR_TRACE, TRACE_SQL_FLAGS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongReturns length of this value in characters.private static intCompares two CLOB values directly.intcompareTypeSafe(Value v, CompareMode mode, CastDataProvider provider) Compare this value against another value given that the values are of the same data type.(package private) ValueClobconvertPrecision(long precision) Convert the precision to the requested value.copy(DataHandler database, int tableId) Copy a large value, to be used in the given table.static ValueClobcreateSmall(byte[] data) Creates a small CLOB value that can be stored in the row directly.static ValueClobcreateSmall(byte[] data, long charLength) Creates a small CLOB value that can be stored in the row directly.static ValueClobcreateSmall(String string) Creates a small CLOB value that can be stored in the row directly.static ValueClobcreateTempClob(Reader in, long length, DataHandler handler) Create a temporary CLOB value from a stream.private static ValueClobcreateTemporary(DataHandler handler, Reader in, long remaining) Create a CLOB in a temporary file.(package private) byte[]getInputStream(long oneBasedOffset, long length) Get the input streamgetReader(long oneBasedOffset, long length) Get the readergetSQL(StringBuilder builder, int sqlFlags) Appends the SQL statement of this object to the specified builder.Get the value as a string.intGet the value type.longReturns length of this value in bytes.Methods inherited from class ValueLob
copyToResult, createTempLobFileName, equals, getBinaryTooLong, getBufferSize, getBytes, getBytesNoCopy, getLobData, getMemory, getReader, getStringTooLong, getType, hashCode, isLinkedToTable, rangeInputStream, rangeReader, readBytes, readString, removeMethods inherited from class Value
add, cache, castTo, clearCache, compareTo, compareWithNull, containsNull, convertForAssignTo, convertTo, convertTo, convertTo, convertTo, convertTo, convertToAnyArray, convertToAnyRow, convertToBigint, convertToBoolean, convertToChar, convertToDate, convertToDouble, convertToEnum, convertToGeometry, convertToInt, convertToInt, convertToJavaObject, convertToReal, convertToSmallint, convertToTinyint, convertToUuid, divide, getBigDecimal, getBoolean, getByte, getDataConversionError, getDataConversionError, getDouble, getFloat, getHigherOrder, getHigherOrderKnown, getInt, getLong, getShort, getSignum, getTypeName, getUnsupportedExceptionForOperation, getValueTooLongException, isFalse, isTrue, modulus, multiply, negate, rangeCheck, subtract, toStringMethods inherited from class VersionedValue
getCommittedValue, getCurrentValue, getOperationId, isCommittedMethods inherited from interface HasSQL
getSQL, getTraceSQL
-
Constructor Details
-
ValueClob
-
-
Method Details
-
createSmall
Creates a small CLOB value that can be stored in the row directly.- Parameters:
data- the data in UTF-8 encoding- Returns:
- the CLOB
-
createSmall
Creates a small CLOB value that can be stored in the row directly.- Parameters:
data- the data in UTF-8 encodingcharLength- the count of characters, must be exactly the same as count of characters in the data- Returns:
- the CLOB
-
createSmall
-
createTempClob
Create a temporary CLOB value from a stream.- Parameters:
in- the readerlength- the number of characters to read, or -1 for no limithandler- the data handler- Returns:
- the lob value
-
createTemporary
private static ValueClob createTemporary(DataHandler handler, Reader in, long remaining) throws IOException Create a CLOB in a temporary file.- Throws:
IOException
-
getValueType
public int getValueType()Description copied from class:ValueGet the value type.- Specified by:
getValueTypein classValue- Returns:
- the value type
-
getString
-
getBytesInternal
byte[] getBytesInternal()- Specified by:
getBytesInternalin classValueLob
-
getInputStream
- Overrides:
getInputStreamin classValue
-
getInputStream
Description copied from class:ValueGet the input stream- Overrides:
getInputStreamin classValue- Parameters:
oneBasedOffset- the offset (1 means no offset)length- the requested length- Returns:
- the new input stream
-
getReader
-
compareTypeSafe
Description copied from class:ValueCompare this value against another value given that the values are of the same data type.- Specified by:
compareTypeSafein classValue- Parameters:
v- the other valuemode- the compare modeprovider- the cast information provider- Returns:
- 0 if both values are equal, -1 if the other value is smaller, and 1 otherwise
-
compare
-
getSQL
Description copied from interface:HasSQLAppends the SQL statement of this object to the specified builder.- Parameters:
builder- string buildersqlFlags- formatting flags- Returns:
- the specified string builder
-
convertPrecision
Convert the precision to the requested value.- Parameters:
precision- the new precision- Returns:
- the truncated or this value
-
copy
Description copied from class:ValueLobCopy a large value, to be used in the given table. For values that are kept fully in memory this method has no effect. -
charLength
public long charLength()Description copied from class:ValueReturns length of this value in characters.- Overrides:
charLengthin classValue- Returns:
- length of this value in characters
-
octetLength
public long octetLength()Description copied from class:ValueReturns length of this value in bytes.- Overrides:
octetLengthin classValue- Returns:
- length of this value in bytes
-