well then, not sure then is this helps, but I have 1 web app looking a
db and a script (no web, just dal) that points to the same DB, both
can select, update, insert from the same DB etc... as long as both
know about the tables (and one has migrate=True). Changes on one side
side can be seen by the other.
when developing or making changes, or adding or removing tables
(typically I do this from script), I always finish off by running a
script that will look for all instances of db.define_table('',(bla)),
and will re-write those lines in db.py
I assume this can also be done as easily with 2 web apps...
Is that what you mean?
Mart :)
On May 30, 11:25 pm, pbreit <[email protected]> wrote:
> I believe you are thinking of appadmin which is a controller in each app.