Re: Check-in #5 / Multiple timezone support for datetime representation

2011-10-23 Thread Anssi Kääriäinen
On Oct 23, 7:16 pm, Aymeric Augustin wrote: > > Converters can be > > registered per-column - the SELECT query would need to be tweaked to > > hint to the SQLite libs to call the registered converter. I'm not sure > > if that would be too intrusive to the existing Django query builder. > > I didn'

Re: Check-in #5 / Multiple timezone support for datetime representation

2011-10-23 Thread Aymeric Augustin
On 18 oct. 2011, at 14:48, Daniel Swarbrick wrote: > On Oct 16, 11:48 am, Aymeric Augustin > wrote: >> Hello, >> >> I've implemented the storage and retrieval of aware datetime objects in >> SQLite. This involved some refactoring, because SQLite returns datetimes as >> strings, and I didn't wa

Re: Check-in #5 / Multiple timezone support for datetime representation

2011-10-18 Thread Daniel Swarbrick
On Oct 16, 11:48 am, Aymeric Augustin wrote: > Hello, > > I've implemented the storage and retrieval of aware datetime objects in > SQLite. This involved some refactoring, because SQLite returns datetimes as > strings, and I didn't want to duplicate the parsing code. All database > backends ar