Java org.springframework.jdbc.core.support SqlLobValue fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.core.support SqlLobValue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.core.support SqlLobValue.

The text is from its open source code.

Constructor

SqlLobValue(@Nullable byte[] bytes, LobHandler lobHandler)
Create a new BLOB value with the given byte array.
SqlLobValue(@Nullable String content, LobHandler lobHandler)
Create a new CLOB value with the given content string.
SqlLobValue(InputStream stream, int length)
Create a new BLOB/CLOB value with the given stream, using a DefaultLobHandler.
SqlLobValue(Reader reader, int length)
Create a new CLOB value with the given character stream, using a DefaultLobHandler.
SqlLobValue(InputStream stream, int length, LobHandler lobHandler)
Create a new BLOB/CLOB value with the given stream.
SqlLobValue(Reader reader, int length, LobHandler lobHandler)
Create a new CLOB value with the given character stream.
SqlLobValue(@Nullable byte[] bytes)
Create a new BLOB value with the given byte array, using a DefaultLobHandler.
SqlLobValue(@Nullable String content)
Create a new CLOB value with the given content string, using a DefaultLobHandler.