> > For a novice in web programming like me is there a simple blog post or > some documentation available where I can read how to setup web2py to work > with the OrinetDB or neo4j databases? >
I'm not aware of any, but it should be the same as with any Python program/framework -- just use the relevant Python driver. Note, both the Auth system and the Scheduler depend on the DAL, so if you want to use either of those, you will need to set up a database supported by the DAL to store the relevant data. You will also need a DAL-supported database if you want to store sessions in the db (though file-based sessions are the default, and there is also a cookie-based session option). Also, note that SQLFORM and the grid also depend on the DAL, so you won't be able to use those with the above databases. Actually, if you want to use SQLFORM.factory to generate and process forms, you can still do so by creating dummy DAL models (i.e., models not linked to a database) -- you would just have to handle the database operations yourself. > I u'stand that DAL does not support these databases, but is it possible to > completely ignore the DAL part of web2py and use the rest to develop my web > application. > Yes, you can still use most of the web2py functionality without the DAL (except as noted above). Anthony -- 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 web2py+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.