I have a column in database having datatype DATETIME. I want to set this column value to current date and time using `PreparedStatement. How do I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Use
Alternativaly, if the DB supports it, you could also call a DB specific function to set it with the current timestamp. For example MySQL supports
Or if the DB supports it, change the field type to one which automatically sets the insert/update timestamp, such as |
|||||
|
Where the function getCurrentDatetime() does the following:
|
|||
|