Using Timestamp
I have a column in one of my tables that requires me to give it a Timestamp value when the record is updated. How is it that I use Timestamp() and furthermore, how is it that I can then use toString() so that I can use it in my JDBC SQL statement?
Could someone please give me some sample code that will grab the current date and time in this format:
yyyy-mm-dd hh:mm:ss.000
and then change it into a string that I can use in my SQL statement.
Thank you in advance!

