[Chicago] MeetUp

Massimo Di Pierro mdipierro at cs.depaul.edu
Fri Jun 27 18:12:40 CEST 2008


Most of the GAE functionality is supported by the web2py ORM and  
*any* program written with web2py for GAE works on other databases  
(mysql,postgresql,sqlite, oracle (and mssq soon)). The opposite is  
not true. For example

     db(db.table.field='value').select 
(db.table.ALL,orderby=~db.tabel.field)

works everywhere including GAE but

     db((db.table.field='value')& 
(db.othertable.id==db.table.referencefield)).select 
(db.table.ALL,orderby=~db.tabel.field)

does not work on GAE because it does a join.

On Jun 27, 2008, at 10:39 AM, Frederick Polgardy wrote:

> Well, you don't have *any* SQL database functionality on GAE.  It's  
> all the Google data store stuff, and has its own APIs.
>
> On Fri, Jun 27, 2008 at 10:26 AM, Massimo Di Pierro  
> <mdipierro at cs.depaul.edu> wrote:
> Mind that KPAX does not run on the app-engine because it does a lot  
> of joins and other complex queries.
>
> Massimo
>
> On Jun 27, 2008, at 10:24 AM, Frederick Polgardy wrote:
>
>> Yep, you can map any domain name to an app engine app.
>
> -- 
> Science answers questions; philosophy questions answers.<ATT00001.txt>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/chicago/attachments/20080627/1b74a0ac/attachment.htm>


More information about the Chicago mailing list