DAL doesn't support Access as a database, so you can't expect the widget to work directly on your Access file. BTW, Access has really too many problems to be considered as a backend for a web application...
That being said, if you want to experiment a little bit (please note that you could crash your computer AND your database to the ground, so I'm not taking any responsibility) is to create an odbc connection with a connectionstring http://www.connectionstrings.com/microsoft-access-odbc-driver/ and using it with db2 = DAL('mssql://connectionstring') defining the tables you need with migrate=False (so they don't get created in the backend) and playing with those. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

