In fact, this is another way to do what you want.
On 1/19/08, Petr Jakeš <[EMAIL PROTECTED]> wrote:
> Problem solved,
>
> p = MyTable.select(MyTable.q.name == "pets")
> works instead of:
> p = MyTable.selectBy(name == "pets")
>
> Sorry for bothering your weekend time :-)
>
> Petr
>
> On Jan 19, 20
The correct is:
MyTable.selectBy(name = "pets")
You're using == instead of =
Leandro.
On 1/19/08, Petr Jakeš <[EMAIL PROTECTED]> wrote:
> Hi, I have following problem:
>
> following code throw this error:
> unhandled NameError, global name 'name' is not defined
> and I really do not know what
Problem solved,
p = MyTable.select(MyTable.q.name == "pets")
works instead of:
p = MyTable.selectBy(name == "pets")
Sorry for bothering your weekend time :-)
Petr
On Jan 19, 2008 6:17 PM, Petr Jakeš <[EMAIL PROTECTED]> wrote:
> Hi, I have following problem:
>
> following code throw this error:
Hi, I have following problem:
following code throw this error:
unhandled NameError, global name 'name' is not defined
and I really do not know what to do to write it properly
class MyTable(SQLObject):
name=StringCol(length=20, default=None)
MyTable.createTable(ifNotExists=True)
rPets = MyTab