...
|
...
|
@@ -44,8 +44,8 @@ public class DaoImpl implements Dao { |
|
|
KeyHolder keyHolder = new GeneratedKeyHolder();
|
|
|
this.jdbcTemplate.update(new PreparedStatementCreator() {
|
|
|
public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {
|
|
|
DaoImpl.logger.info("oper=" + oper + " sndr=" + sndr+"type="+type+"styp="+styp);
|
|
|
String sql = "insert into T_ETL_MESSAGE(OPER,SNDR,SNTM,content,TYPE,STYP,SEQN) values(?,?,to_date(?,'yyyyMMddhh24miss'),empty_clob(),?,?,?)";
|
|
|
DaoImpl.logger.info("oper=" + oper + " sndr=" + sndr+" type="+type+" styp="+styp);
|
|
|
String sql = "insert into T_ETL_MESSAGE(OPER,SNDR,SNTM,content,TYPE,STYP,SEQN) values(?,?,to_timestamp(?,'yyyyMMddHH24MIssff'),empty_clob(),?,?,?)";
|
|
|
PreparedStatement ps = connection.prepareStatement(sql, new String[]{"FID"});
|
|
|
ps.setString(1, oper);
|
|
|
ps.setString(2, sndr);
|
...
|
...
|
|