On Fri, Oct 28, 2005 at 11:01:53AM -0200, Flavio Coelho wrote:
> Since SQLObject requires the class name to
> correspond to the table name....
It does not. See below.
> 2005/10/28, Oleg Broytmann <phd@...>:
> >
> > On Fri, Oct 28, 2005 at 08:01:52AM -0200, Flavio Coelho wrote:
> > > If I could create a SQlObject instance from a database table
> >
> > class MyTable(SQLObject):
> > class sqlmeta:
> > fromDatabase = True
class MyTable(SQLObject):
class sqlmeta:
table = "a_different_name"
fromDatabase = True
Oleg.
--
Oleg Broytmann http://phd.pp.ru/ phd@...
Programmers don't die, they just GOSUB without RETURN.
|