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