I think you can try:
db1 = DAL('sqlite://storage.sqlite', migrate_enabled=False,
folder='/full/path/to/applications/AppA/databases)
One of this may work too but I do not remember which one:
db1 = DAL('sqlite://storage.sqlite', migrate_enabled=False,
folder='../../AppA/databases')
db1 = DAL('sqlite://storage.sqlite', migrate_enabled=False,
folder='../AppA/databases')
db1 = DAL('sqlite://storage.sqlite', migrate_enabled=False,
folder='applications/AppA/databases')
Please let us know.
Massimo
On Saturday, 8 December 2012 14:29:06 UTC-6, mweissen wrote:
>
> 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
>
--