| org.springframework.jdbc.support.incrementer.DataFieldMaxValueIncrementer |
Interface that defines contract of incrementing any data store field's maximum value. Works much like a sequence number generator.
Typical implementations may use standard SQL, native RDBMS sequences or Stored Procedures to do the job.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Increment the data store field's max value as int.
| |||||||||||
Increment the data store field's max value as long.
| |||||||||||
Increment the data store field's max value as String.
| |||||||||||
Increment the data store field's max value as int.
| DataAccessException | in case of errors |
|---|
Increment the data store field's max value as long.
| DataAccessException | in case of errors |
|---|
Increment the data store field's max value as String.
| DataAccessException | in case of errors |
|---|