How do I change a long variable to a Timestamp variable? I can convert it to a String but I need to convert it to Timestamp in order to use it in a database.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Timestamp extends java.util.Date and it has a constructor that accepts a long. Like this:
|
|||||
|
|
I don't know Java, but an internet search suggests that So, you can do something like this, perhaps:
For more information, see http://download.oracle.com/javase/6/docs/api/java/sql/Timestamp.html. |
|||
|
|