You can have zipdb = DAL('<connection to the zip database') in both of your
apps (let's call them app1 and app2) and identical table definitions for
zipdb.
Then you can have db = DAL('<connection to app1 db') in app1 models and db
= DAL('<connection to app2 db') in app2.
Just remember to pay attention to migration on zipdb, i.e. only one can
have migrate=True when needed while the other must have migrate=False always2015-03-06 4:57 GMT+01:00 lucas <[email protected]>: > wouldn't SQL based be better? especially with searching through indexes. > like i use postgresql and i wouldn't mind sticking with that. lucas > > On Thursday, March 5, 2015 at 9:39:21 PM UTC-5, Ron Chatterjee wrote: >> >> Once solution I can think of, you can save them all on a csv file and >> write them on a csv file. import and export on demand and create tables >> that way. There are some links I saw about how to create DAL object using >> csv file. >> > -- > Resources: > - http://web2py.com > - http://web2py.com/book (Documentation) > - http://github.com/web2py/web2py (Source code) > - https://code.google.com/p/web2py/issues/list (Report Issues) > --- > You received this message because you are subscribed to the Google Groups > "web2py-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

