Calendar Component and validation errors
Hi,
For the first time I am trying to use the Calendar component to insert a date field in my SQL Server db.
The problem: I can insert a date column only if its of type java.sql.Timestamp.
As Timestamp extends the date object..
I tried to bind the selectedDate field as <Timestamp> Object[refractored in my class file] and when i tried to update by DB it throwing a Validation error.
If I bind it as a Date Object directly I am getting an EvaluvationException
as date objects cannot be inserted directly
Am i missing something here or is there a proper way of implementing it.

