MVN

com.github.ferstl : spring-jdbc-oracle-parent

Maven & Gradle

Jul 02, 2018
6 stars

A variant of Spring's JdbcTemplate that uses Oracle Update Batching. If Spring's classic JdbcTemplate is used in combination with an Oracle DB, the `batchUpdate()` methods won't return the number of affected rows. Instead, these methods do always return an array containing -2 (`Statement#SUCCESS_NO_INFO`) in each element. In order to get the number of affected rows during a batch INSERT/UPDATE/DELETE, it is required to use [Oracle Update Batching](http://docs.oracle.com/cd/B28359_01/java.111/b31224/oraperf.htm#autoId2).

<dependency>
    <groupId>com.github.ferstl</groupId>
    <artifactId>spring-jdbc-oracle-parent</artifactId>
    <version>2.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.ferstl : spring-jdbc-oracle-parent to add to Maven - Latest Versions:

  • Latest Stable: 2.0.0

All Versions

Choose a version of com.github.ferstl : spring-jdbc-oracle-parent to add to Maven - All Versions:

Version Vulnerabilities Updated
2.0.x
spring-jdbc-oracle-parent-2.0.0
1.0.x
spring-jdbc-oracle-parent-1.0.0
0.9.x
spring-jdbc-oracle-parent-0.9.0

How to add a POM dependency to Maven

POM as dependency in dependencyManagement

<dependency>
    <groupId>com.github.ferstl</groupId>
    <artifactId>spring-jdbc-oracle-parent</artifactId>
    <version>2.0.0</version>
</dependency>