Class ClobCodec
java.lang.Object
org.mariadb.jdbc.plugin.codec.ClobCodec
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanDecode(ColumnDecoder column, Class<?> type) If codec can decode this a server datatype to a java class typebooleanCan Codec encode the java object typebooleanIndicate if can encode long dataCodec native typedecodeBinary(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) Decode from a mysql packet binary encoded a value to codec java typedecodeText(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) Decode from a mysql packet text encoded a value to codec java typevoidBinary encode value to writerbyte[]encodeData(Clob value, Long maxLength) binary encoding value to a byte[]voidencodeLongData(Writer encoder, Clob value, Long maxLength) binary encoding value to a long data packetvoidText encode value to writerintReturn server encoding data typeprivate ClobgetClob(ReadableByteBuf buf, MutableInt length, ColumnDecoder column)
-
Field Details
-
INSTANCE
Default instance -
COMPATIBLE_TYPES
-
-
Constructor Details
-
ClobCodec
public ClobCodec()
-
-
Method Details
-
className
-
canDecode
Description copied from interface:CodecIf codec can decode this a server datatype to a java class type -
canEncode
-
decodeText
public Clob decodeText(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) throws SQLDataException Description copied from interface:CodecDecode from a mysql packet text encoded a value to codec java type- Specified by:
decodeTextin interfaceCodec<Clob>- Parameters:
buf- mysql packet bufferlength- encoded value lengthcolumn- server column metadatacal- calendarcontext- connection context- Returns:
- decoded value
- Throws:
SQLDataException- if unexpected error occurs during decoding
-
getClob
private Clob getClob(ReadableByteBuf buf, MutableInt length, ColumnDecoder column) throws SQLDataException - Throws:
SQLDataException
-
decodeBinary
public Clob decodeBinary(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) throws SQLDataException Description copied from interface:CodecDecode from a mysql packet binary encoded a value to codec java type- Specified by:
decodeBinaryin interfaceCodec<Clob>- Parameters:
buf- mysql packet bufferlength- encoded value lengthcolumn- server column metadatacal- calendarcontext- connection context- Returns:
- decoded value
- Throws:
SQLDataException- if unexpected error occurs during decoding
-
encodeText
public void encodeText(Writer encoder, Context context, Object value, Calendar cal, Long maxLength) throws IOException, SQLException Description copied from interface:CodecText encode value to writer- Specified by:
encodeTextin interfaceCodec<Clob>- Parameters:
encoder- writercontext- connection contextvalue- value to encodecal- calendarmaxLength- maximum value length- Throws:
IOException- if any socket error occursSQLException- if encoding error occurs
-
encodeBinary
public void encodeBinary(Writer encoder, Context context, Object value, Calendar cal, Long maxLength) throws IOException, SQLException Description copied from interface:CodecBinary encode value to writer- Specified by:
encodeBinaryin interfaceCodec<Clob>- Parameters:
encoder- writercontext- connection contextvalue- value to encodecal- calendarmaxLength- maximum value length- Throws:
IOException- if any socket error occursSQLException- if encoding error occurs
-
encodeLongData
public void encodeLongData(Writer encoder, Clob value, Long maxLength) throws IOException, SQLException Description copied from interface:Codecbinary encoding value to a long data packet- Specified by:
encodeLongDatain interfaceCodec<Clob>- Parameters:
encoder- writervalue- value to encodemaxLength- maximum length value- Throws:
IOException- if any socket error occursSQLException- if encoding error occurs
-
encodeData
Description copied from interface:Codecbinary encoding value to a byte[]- Specified by:
encodeDatain interfaceCodec<Clob>- Parameters:
value- value to encodemaxLength- maximum length value- Returns:
- encoded value
- Throws:
IOException- if any socket error occursSQLException- if encoding error occurs
-
canEncodeLongData
public boolean canEncodeLongData()Description copied from interface:CodecIndicate if can encode long data- Specified by:
canEncodeLongDatain interfaceCodec<Clob>- Returns:
- true if possible
-
getBinaryEncodeType
public int getBinaryEncodeType()Description copied from interface:CodecReturn server encoding data type- Specified by:
getBinaryEncodeTypein interfaceCodec<Clob>- Returns:
- server encoding data type
-