Hi everybody
I am developing a web page, in that I put some fields and a datetime field in order to let the user to pick a datetime value and all that value are inserted or updated in the table of my mysql database. (the datatype of the field is datetime too).
I am using callbacks for insert and update and there is the problem, all the fields(varchars,integers) are inserted and updated very well
except by the datetime field. Without the two callbacks(insert and update) all the fields are inserted including the datetime field but I am using stored procedures so I must use the callbacks to avoid the auto insert-update of the crud.
If anyone knows how to fix this I would appreciate it. Thanks.