python app engine restful service using DAL -
i building restful service in python app engine , able separate datastore operations (like queries) request handlers.
i can build own dal, i'm wondering if there libraries out there. know of or have suggestions on how build one? help.
if want portable outside google app engine try web2py dal api.
you code this:
db = dal('gae') rows = db(db.mytable.myfield!=none).select() row in rows: print row.myfield
web2py supports these db flavors:
google app engine
sqlite
mysql
postgresql
mssql
firebird
oracle
db2
ingres
informix
Comments
Post a Comment