Changes between Initial Version and Version 1 of Ticket #10313


Ignore:
Timestamp:
Feb 20, 2009, 9:52:30 AM (15 years ago)
Author:
Karen Tracey
Comment:

[Fixed formatting. Please use preview.]

I really don't think you want to be using cx_oracle

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10313 – Description

    initial v1  
    1111
    1212I have a very simple model defined as:
     13{{{
     14#!python
    1315class DBEventHistory(models.Model):
    1416    event_date = models.DateTimeField()
     
    2224        db_table = u'DB_EVENT_HISTORY'
    2325        verbose_name_plural = ('DB Event History')
    24 
     26}}}
    2527The trace back I get is:
     28{{{
    2629Environment:
    2730
     
    6669Exception Value: coercing to Unicode: need string or buffer, datetime.datetime found
    6770
     71}}}
Back to Top