Re: [SQLObject] how to use sqlmeta.idName?
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Oleg B. <ph...@ph...> - 2005-07-18 11:49:00
|
On Mon, Jul 18, 2005 at 08:22:50AM -0300, Jo?o Paulo Fernandes Farias wrote: > Are you using the SVN version? But of course! > So, I'm trying to use the sqlmeta, but I don't know how to use it. =( The correct way is: class Test(SQLObject): class sqlmeta: idName = 'id_test' test = StringCol() Oleg. -- Oleg Broytmann http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |