aspose file tools
The moose likes JDBC and the fly likes String to Timestamp conversion Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "String to Timestamp conversion" Watch "String to Timestamp conversion" New topic
Author

String to Timestamp conversion

amit prajapati
Greenhorn

Joined: Oct 18, 2011
Posts: 2

Hi,

I am facing problem in converting String to Time stamp.



How can i convert into Timestamp from String object when i Update the DB ?

Regards,
Amit P.
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26193
    
  66

You can use SimpleDateFormat in Java to build a Date object (which parses your string) and then convert that to a Timestamp.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
steve davis
Greenhorn

Joined: Oct 20, 2011
Posts: 3
Use a SimpleDateFormat with an appropriate format string (be careful to use the correct format letters, uppercase and lowercase have different meanings!).
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: String to Timestamp conversion
 
Similar Threads
Why this OverFlow error during updating?
Column 'NEXT_HI' is either not in any table in the FROM list or appears
time conversion
How to use a Timestamp as the Identifier
ORM Vs JDBC