Re: [SQLObject] DateTimeCol - how to insert properly

2006-03-14 Thread Oleg Broytmann
On Tue, Mar 14, 2006 at 10:10:55PM +0100, Grzesiek Slusarek wrote: > class Logging(SQLObject): > class sqlmeta: > table = 'logowania' > fromDatabase = True > idName = 'nrlogowania' > Idwykladowcy = ForeignKey('User', dbName="idwykladowcy") >

[SQLObject] DateTimeCol - how to insert properly

2006-03-14 Thread Grzesiek Slusarek
Hi all. I've got table from database which has columns datetimecol. I'm trying make new record but i can't. Ican properly give a datetime to that columns. My class definition: class Logging(SQLObject): class sqlmeta: table = 'logowania' fromDatabase = True