Hi Sergey,
I have error 50004-162 in prepared statement here it is:
update test set user=?, expires=sysdate + ?, name=?,
last_modified=sysdate where test= ?
as I understood error appeares because of expires=sysdate + ?
statment. Are there any way to make it work like it is now?
You could try DATEADD() eg
update test set user=?, expires=DATEADD('DAY', ?, sysdate), name=?,
last_modified=sysdate where test= ?
Regards,
Peter
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en.