Java org.springframework.jdbc.support.lob LobCreator fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Implementation

org.springframework.jdbc.support.lob.LobCreator has the following implementations.
Click this link to see all its implementation.

Method

voidsetBlobAsBinaryStream(PreparedStatement ps, int paramIndex, @Nullable InputStream contentStream, int contentLength)
Set the given content as binary stream on the given statement, using the given parameter index.
voidsetBlobAsBytes(PreparedStatement ps, int paramIndex, @Nullable byte[] content)
Set the given content as bytes on the given statement, using the given parameter index.
voidsetClobAsString(PreparedStatement ps, int paramIndex, @Nullable String content)
Set the given content as String on the given statement, using the given parameter index.