use of org.springframework.jdbc.support.lob.DefaultLobHandler in project perun by CESNET.
the class Auditer method setPerunPool.
public void setPerunPool(DataSource perunPool) throws InternalErrorException {
this.jdbc = new JdbcPerunTemplate(perunPool);
if (Compatibility.isOracle()) {
OracleLobHandler oracleLobHandler = new OracleLobHandler();
oracleLobHandler.setNativeJdbcExtractor(new CommonsDbcpNativeJdbcExtractor());
lobHandler = oracleLobHandler;
} else {
lobHandler = new DefaultLobHandler();
}
}
Aggregations