Oleg Broytmann mail2.phd.pp.ru> writes:
>
> On Tue, Mar 14, 2006 at 12:54:11PM +0000, Vivek wrote:
> > a=Entries.select(Entries.q.aCount==3,Entries.q.alpha==myalpha)
>
> a=Entries.select(AND(Entries.q.aCount==3,Entries.q.alpha==myalpha))
>
> Oleg.
I get this err
)
is there somthing otherwise available from sqlobject??
attaching the table structure here.
cheers
Vivek
class Alpha(SQLObject):
alphaname = UnicodeCol(length =
200,unique=True,notNone=True,alternateID=True)
#firstentry = ForeignKey('Entries')
entries = MultipleJoi