Example usage for org.springframework.jdbc.support.lob TemporaryLobCreator TemporaryLobCreator

List of usage examples for org.springframework.jdbc.support.lob TemporaryLobCreator TemporaryLobCreator

Introduction

In this page you can find the example usage for org.springframework.jdbc.support.lob TemporaryLobCreator TemporaryLobCreator.

Prototype

TemporaryLobCreator

Source Link

Usage

From source file:org.springframework.jdbc.support.lob.DefaultLobHandler.java

@Override
public LobCreator getLobCreator() {
    return (this.createTemporaryLob ? new TemporaryLobCreator() : new DefaultLobCreator());
}