logo
Jun
28
nik

AppEngine Video Site

I have been learning how to create apps for Google AppEngine, relying mostly on videos. I figured other people might be interested in the same thing so I setup a Ning site that aggregates AppEngine videos. Here it is:...
Apr
26
nik

Simple GQL Query Syntax

As I go through the process of getting familiar with Google AppEngine, I’ll post interesting things I learn (mostly so I can find them later). Here’s a quick note on GQL query syntax: Assuming a model called Customer, you can use: 1) customers = db.GqlQuery(“SELECT * FROM Customer ORDER BY name LIMIT 10″) 2) And since GQL queries always return data objects, you can skip the SELECT *...
logo