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

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -