Guest User

Untitled

a guest
May 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. int numOfRowsAffected = remoteJdbcTemplate.update("insert into dbo.[ELCOR Resource Time Registr_] "
  2. + "( [Entry No_], [Record ID], [Posting Date], [Resource No_], [Job No_], [Work Type], [Quantity], [Unit of Measure], [Description], [Company Name], [Created Date-Time], [Status] ) "
  3. + " VALUES (?,CONVERT(varbinary,?),?,?,?,?,?,?,?,?,?,?);",
  4.  
  5. ELCORResourceTimeRegistr.getEntryNo(),
  6. ELCORResourceTimeRegistr.getEntryNo()),
  7. ELCORResourceTimeRegistr.getPostingDate(),
  8. ELCORResourceTimeRegistr.getResourceNo(),
  9. jobNo,
  10. ELCORResourceTimeRegistr.getWorkType(),
  11. ELCORResourceTimeRegistr.getQuantity(),
  12. ELCORResourceTimeRegistr.getUnitOfMeasure(),
  13. ELCORResourceTimeRegistr.getDescription(),
  14. ELCORResourceTimeRegistr.getCompanyName(),
  15. ELCORResourceTimeRegistr.getCreatedDate(),
  16. 0);
  17.  
  18. ELCORResourceTimeRegistr.getEntryNo().getClass().getCanonicalName() => java.lang.String
Add Comment
Please, Sign In to add comment