Having a PreparedStament, I have a field of type timestamp and I don't want to set it to a fixed value but call NOW() instead. How do I do that?
I tried:
statement.setString(11, "NOW()")
but that tries to set the field to the string "NOW()" instead of calling NOW().
Thanks.