<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechBubble &#187; AppEngine</title>
	<atom:link href="http://www.kalyani.com/tag/appengine/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kalyani.com</link>
	<description>Nik Kalyani&#039;s Irrationally Exuberant Musings on Technology</description>
	<lastBuildDate>Mon, 23 Jan 2012 08:16:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AppEngine Video Site</title>
		<link>http://www.kalyani.com/2008/06/appengine-video-site/</link>
		<comments>http://www.kalyani.com/2008/06/appengine-video-site/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[AppEngine]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/204/AppEngine-Video-Site.aspx</guid>
		<description><![CDATA[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: http://www.AppEngine.tv Enjoy.]]></description>
			<content:encoded><![CDATA[<p>I have been learning how to create apps for <cite>Google</cite> 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.</p>
<p>Here it is: <a href="http://www.AppEngine.tv">http://www.AppEngine.tv</a></p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2008/06/appengine-video-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple GQL Query Syntax</title>
		<link>http://www.kalyani.com/2008/04/simple-gql-query-syntax/</link>
		<comments>http://www.kalyani.com/2008/04/simple-gql-query-syntax/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[AppEngine]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/203/Simple-GQL-Query-Syntax.aspx</guid>
		<description><![CDATA[As I go through the process of getting familiar with Google AppEngine, I&#8217;ll post interesting things I learn (mostly so I can find them later). Here&#8217;s a quick note on GQL query syntax: Assuming a model called Customer, you can use: 1) customers = db.GqlQuery(&#8220;SELECT * FROM Customer ORDER BY name LIMIT 10&#8243;) 2) And <a href='http://www.kalyani.com/2008/04/simple-gql-query-syntax/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>As I go through the process of getting familiar with <cite>Google</cite> AppEngine, I&#8217;ll post interesting things I learn (mostly so I can find them later). Here&#8217;s a quick note on GQL query syntax:</p>
<p>Assuming a model called Customer, you can use:</p>
<p>1) <strong>customers = db.GqlQuery(&#8220;SELECT * FROM Customer ORDER BY name LIMIT 10&#8243;)</strong></p>
<p>2) And since GQL queries always return data objects, you can skip the SELECT * and abbreviate to:</p>
<p><strong>customers = Customer.gql(&#8220;ORDER BY name LIMIT 10&#8243;)</strong></p>
<p>3) You can also use parameters like this:</p>
<p><strong>customers = Customer.gql(&#8220;WHERE name = :1 ORDER BY name LIMIT 10&#8243;, &#8220;Smith&#8221;)</strong></p>
<p>4) And finally, #3 with named parameters like this:</p>
<p><strong>customers = Customer.gql(&#8220;WHERE name= :person ORDER BY name LIMIT 10&#8243;, person=&#8221;Smith&#8221;)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2008/04/simple-gql-query-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

