I think I figured this out. The it seems to matter what class has the
foreign key so special attention needed there. In my case.
> class DataRow(SQLObject):
> type = StringCol()
> data = BLOBCol(length=2**24)
> text = UnicodeCol()
> row = ForeignKey('ProcessRow')
class DataRo
On Fri, Nov 14, 2008 at 09:08:05AM -0500, Darren Govoni wrote:
> AttributeError: DataRow instance has no attribute 'processRowID'
This a known problem with Joins - they cannot guess what ForeignKey
points to them. The user is expected to help.
> class DataRow(SQLObject):
> type = StringCo