Hello,
I had the same problem.
A solution is to filter bad records with a processor instead of using a skippable exception in the writer.
Imho, the spring batch documentation does not explain...
Type: Posts; User: yamo93; Keyword(s):
Hello,
I had the same problem.
A solution is to filter bad records with a processor instead of using a skippable exception in the writer.
Imho, the spring batch documentation does not explain...
Thanks a lot.
I use NamedParameterJdbcTemplate in order to reuse already implemented MapSqlParameterSource.
Here is the final code :
NamedParameterJdbcTemplate tpl = new...
Thanks for your response but it partially answers my question.
In my pure jdbc example, i don't use a trigger but I pass the name of the oracle sequence in the insert request.
How can i pass...
Hi,
With Oracle 10 R2, it is possible to use automatic key generation and retrieval, with jdbc like this :
PreparedStatement ps = conn.prepareStatement("INSERT INTO TABLE (ID, COL1) values...