hi all!

i'm here with a very specific situation: my applications consists in two sqlite database files, the main one (the application itself) and the user's (located at their appdata / config dir).

so, using plain good ol' sql, I can append one to another and run a query like:

*select *.t1 from db1.table1 t1 join db2.table2 t2**on t1.baz = t2.id where t2.foo = 'bar';*

nothing fancy..

but, it is possible to achieve this kind of behaviour using sqla; and, furthermore, mimic fk's behaviour in the relationship of t1.baz and t2.id ?


cheers,
richard.

--
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to