Questions
Replace
new Timestamp();
with
new java.util.Date()
because there is no default constructor for Timestamp, or you can do it with the method:
Timestamp
new Timestamp(System.currentTimeMillis());
~ Answered on 2014-04-14 19:33:18