Thanks for the help guys! i knew it was in there hiding.... for reference, here is what i did (i'm running on GAE):
in db.py:
from gluon.globals import current
db = DAL('gae') # connect to Google BigTable
current.db=db
in my module:
from gluon.globals import current
db=current.db
thanks!
cfh

