On Mon, Mar 12, 2012 at 8:46 PM, pbreit <[email protected]> wrote:
> from models import auth_user, product
in my code the same is doing with.
from mymodule import DataBase, User # db and auth
from datamodels.product import Product # the definition of product class
def function():
db = DataBase([User, Product])
products = db(db.Product.id>0).select()
users = db(db.User.id>0).select() # also possible to refer as
db.auth_user.id>0
return dict(products=products, users=users)
But I am sure there is a better approach, we just need to find and document
it.
--
Bruno Rocha
[http://rochacbruno.com.br]