from a web page, i'm able to successfully query my database using the following:
rows = db(db[request.args(0)].id == request.args(1)).select(.... What I'm having trouble with is passing another argument that specifies another column other than id. I've tried the following with no success: rows = db(db[request.args(0)].[request.args(2)] == request.args(1)).select (.... rows = db(db[request.args(0)].request.args(2) == request.args(1)).select (.... --