Re: [SQLObject] selectBy method problem

2008-01-19 Thread Leandro Sales
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

Re: [SQLObject] selectBy method problem

2008-01-19 Thread Leandro Sales
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

Re: [SQLObject] selectBy method problem

2008-01-19 Thread Petr Jakeš
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:

[SQLObject] selectBy method problem

2008-01-19 Thread Petr Jakeš
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