Hi,
I have 2 applications (AppA, AppB). Each application has a database
(AppA.db, AppB.db).
There is a table in AppA (AppA.table), which should be used in AppB.
In AppA there is
db.define_table ("table", Field ("something")) # should be the same in
both applications
db.define_table ("table2", Field ("something2"))
In AppB I have tried:
db.define_table ("table3", Field ("something3"))
db1 = DAL('sqlite://storage.sqlite', migrate_enabled=False) # <== how to
write the path of AppA.table
db1.define_table ("table", Field ("something")) # should be the same in
both applications
I don't know how to write the path to AppA.table in AppB
Regards, Martin
--