- 
        1. Re: Date Convert Errorpmuir Jun 28, 2007 4:58 AM (in response to kaviarasu)I don't think that dd-MM-yyyy is the correct pattern for 23-jun-2007. This is just the standard Java SimpleDateFormat stuff, so take a look at that for the correct pattern :) 
- 
        2. Re: Date Convert Errorkaviarasu Jul 3, 2007 10:27 AM (in response to kaviarasu)hi im using the 
 following code to insert date into oracle 10 database. i want the format to be saved as 11-jun1983.
 and i pasted the codings
 can you suggest is this is the correct format
 ----------------------------------------------
 public Date getTdate() {
 return this.tdate;
 }
 public void setTdate(Date tdate) {
 this.tdate = new java.sql.Date(tdate.getTime());
 }
 -----------------------------------------------------
 <h:inputText value="#{user1.tdate}">
 <f:convertDateTime pattern="MM/dd/yyyy"/>
 </h:inputText>
 im getting the following error when i enter the code
 Cannot convert 11/6/83 5:30 AM of type class java.util.Date to class java.sql.Date
 thank you
 
    