On Wed, Dec 16, 2015 at 10:10:13AM +0100, Oleg Broytman wrote:
> class Table_Groups(SQLObject):
> name = StringCol(length=32)
> sensors = MultipleJoin("Table_Sensors", joinColumn="id")
This time it was my fault:
sensors = MultipleJoin("Table_Sensors", joinColumn="group_id")
> gro
Hi!
On Tue, Dec 15, 2015 at 03:49:29PM -0800, jos...@mailmag.net wrote:
> So I've been absolutely loving sqlobject, until I get to actually get to
> making relations between tables. At this point, I feel that the
> 'documentation' covers some points, but really doesn't explain other
> bits very w
So I've been absolutely loving sqlobject, until I get to actually get to
making relations between tables. At this point, I feel that the
'documentation' covers some points, but really doesn't explain other
bits very well at all.
So I have 2 problems:
The first is that when running my program t