Skip navigation
jenn
Currently Being Moderated

datefield in <cfform> inserts 01/01/1900 when left blank.

Nov 16, 2009 12:21 PM

Hi,

Does anyone know why <cfinput type="datefield" name="date" size="10"> inserts 01/01/1900 when the field is left blank?  In my insert statement, I can see that a blank  " " is inserted.  When I query the record I get 01/01/1900.

 

Has anyone else run into this issue?

 

Thanks,

Maryam

 
Replies
  • Jochem van Dieten
    2,389 posts
    Apr 8, 2001
    Currently Being Moderated
    Nov 16, 2009 12:24 PM   in reply to jenn

    If I were to guess I would say your database converts an empty string to the number one and ColdFusion reads that number back as day one in the year 1900. What is that datatype you are inserting into?

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 16, 2009 2:18 PM   in reply to jenn

    Is there any type of "default" value defined for that field.

     

    I suspect you are getting either a defined or system default value stored in the table since no value was supplied that the table could accept.  A single space character is not a "datetime" type value.

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 17, 2009 3:46 PM   in reply to jenn

    Like others, I think the database inserts 01/01/1900 by default when you insert the empty string " " or other non-date values, like integers. I also think configuring the database to set the value in the column to null won't solve the problem. The database engine would use null only when no data is inserted.

     

    When the value " " or some such comes in, the database engine thinks, "Ah, a value has come in, so no need to insert the null". The result is the default  01/01/1900.

     

    One answer is to check, before the insert query, whether the value is a date. Remember there are idiosyncrasies in Coldfusion that don't carry over to databases, like isDate("1a") returning 'yes'. So, before inserting, also check whether the format is compatible with that of the database column. If not, insert a null.

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 18, 2009 5:30 AM   in reply to BKBK

    Regarding - So, before inserting, also check whether the format is compatible with that of the database column. If not, insert a null.

     

    If you have a predictable format instead of simply checking, something like this is a bit more proper.

     

    <cftry>

    yourdate = createdate()

    <cfcatch>

    yourdate = defaultvalue

     

    Then use the yourdate variable in your query.

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 23, 2009 8:49 AM   in reply to jenn

    (shrug...)  I tell ColdFusion that the incoming parameter is a "string" and do all of the necessary data-conversions "by hand" inside my function.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points