On 3/27/07, Jonas Maurus <[EMAIL PROTECTED]> wrote: > > On Mar 27, 7:58 pm, "jeffhg58" <[EMAIL PROTECTED]> wrote: .. > > in the database. I am using a datetime field and when I insert the > > record the milliseconds is being truncated. > > I find that strange, because Postgres doesn't natively support a > column-type "datetime". Nevertheless, you can use a timestamp column > for millisecond resolution
He means Django's DateTimeField. Django creates a column of type 'timestamp with time zone' for DateTimeField. The postgres docs claim microsecond resolution for both with and without timezone. Can you share some code demonstrating the trouble? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

