so..
what's the efficient way to select by a field that's in another table?
( i prefer not to itereate on ALL records )
e.g.
parent_db= Base('t1').create( ('name', str) )
child_db= Base('t2').create( ('name', str), ('parent', parent_db ) )
parent_db.insert( name='jean')
parent_db.insert( name='jacques')
parent_db.insert( name='paul')
parent_db.insert( name='philip')
parent_db.insert( name='anne')
parent_db.insert( name='marie')
child_db.insert(name='itsik1', parent_db[3] )
children = child_db.select( ['name'] , parent=parent_db[3] )
...
ValueError: If argument is a list, only 2 values
should be passed (found 3)
?