> > (a) Where do I save the .db database file (i.e., which folder within the > application). >
Anywhere you want. One option is in /web2py/applications/yourapp/databases, but doesn't have to be in the application folder at all. > (b) Can I connect to it and use it (read information, store information) > using the standard python sqlite3 module commands? > Sure. > If so, is there a specific way to specify the path to the database (from > the controller functions)? > The path to your application folder is available in request.folder, so you could use that as the starting point and traverse up or down from there. Or just use an absolute path on your filesystem. Anthony

