<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.appstudio.dev/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rcarraretto</id>
	<title>NSB App Studio - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.appstudio.dev/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rcarraretto"/>
	<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/Special:Contributions/Rcarraretto"/>
	<updated>2026-08-29T05:00:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7553</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7553"/>
		<updated>2015-08-19T21:26:36Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A Little Bit of Background ==&lt;br /&gt;
&lt;br /&gt;
Before I get into the real thing, I&#039;d like to first share a bit of history:&lt;br /&gt;
&lt;br /&gt;
If you have been into WebApp creation, you probably realized that it is not just the application itself, you&#039;ll need to also have other stuff on your backend to be able to make the application meaningful. Considering I&#039;m an old-fashioned programmer, I initially chose the &amp;quot;comfort zone&amp;quot; and had my server based on a LAMP model (Linux-Apache-MySQL-PHP, while other might prefer WAMP. You can figure out what W stands for).&lt;br /&gt;
&lt;br /&gt;
The MySQL part was easy and creating all the tables and relationships was kind of fun and reminded me of the joy of normalizing data and creating all those relationships, indexes, views and so on. Then I had to think about the hard part: how could I interact with the server DB from my app? Easy: PHP as the frontend and I&#039;m done. A friend of mine recommended a look on APIgility [http://apigility.org] and it realy helped with the API-like heavy-lifting and it was quite easy to implement a RESTful HAL+JSON API on top of it, talking to my MySQL database.&lt;br /&gt;
&lt;br /&gt;
Next step, why not cache some records on the WebApp WebSQL (or SQLite if you prefer). By doing this, the app will look faster and it will also work offline. I started coding the caching mechanism and after a long couple months I realized that I was spending much more time on programming the &amp;quot;support&amp;quot; for my application than the application itself.&lt;br /&gt;
&lt;br /&gt;
Now enter CouchDB/PouchDB. If these names sound weird, you definitely should Google about them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CouchDB ==&lt;br /&gt;
&lt;br /&gt;
CouchDB [http://couchdb.apache.org] is a initiative from Apache Software Foundation that supports a &amp;quot;Database for the Web&amp;quot; (as the creators refer to CouchDB). It is a NoSQL, document-store database, that has several neat features that can really help speeding up your WebApp development:&lt;br /&gt;
&lt;br /&gt;
1) It is fast enough for most applications;&lt;br /&gt;
2) The documents are stored as JSON objects;&lt;br /&gt;
3) It provides authentication for your users;&lt;br /&gt;
4) It is only accessible through HTTP, which makes it perfect for Ajax calls within AppStudio;&lt;br /&gt;
5) It can synchronize seamlessly to other CouchDB instances;&lt;br /&gt;
6) It&#039;s free, and there are PouchDB-like Cloud providers, where you can host your DB for free!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PouchDB ==&lt;br /&gt;
&lt;br /&gt;
PouchDB [http://pouchdb.com] is a JavaScript implementation of CouchDB. It is very easy to add to your AppStudio project (just as easy as adding any JavaScript library) and it provides a rich API and lots of plugins to ease the task of accessing your data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== So what is in for me? ==&lt;br /&gt;
&lt;br /&gt;
Give it a try. It is easier to start with PouchDB as it can all be done within the boundaries of AppStudio. You don&#039;t need to worry about your browser, as PouchDB will use the best persistence method available (IndexedDB first, then WebSQL, then LocalStorage).&lt;br /&gt;
&lt;br /&gt;
Then install CouchDB on your computer, play a little bit with it and when you&#039;re ready for production, you can sign up for an IrisCouch [http://www.iriscouch.com] or Cloudant [http://www.cloudant.com] account and depending on the volume of data you use, it will run for free.&lt;br /&gt;
&lt;br /&gt;
Happy coding!&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7552</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7552"/>
		<updated>2015-08-19T21:24:57Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A Little Bit of Background ==&lt;br /&gt;
&lt;br /&gt;
Before I get into the real thing, I&#039;d like to first share a bit of history:&lt;br /&gt;
&lt;br /&gt;
If you have been into WebApp creation, you probably realized that it is not just the application itself, you&#039;ll need to also have other stuff on your backend to be able to make the application meaningful. Considering I&#039;m an old-fashioned programmer, I initially chose the &amp;quot;comfort zone&amp;quot; and had my server based on a LAMP model (Linux-Apache-MySQL-PHP, while other might prefer WAMP. You can figure out what W stands for).&lt;br /&gt;
&lt;br /&gt;
The MySQL part was easy and creating all the tables and relationships was kind of fun and reminded me of the joy of normalizing data and creating all those relationships, indexes, views and so on. Then I had to think about the hard part: how could I interact with the server DB from my app? Easy: PHP as the frontend and I&#039;m done. A friend of mine recommended a look on APIgility [http://apigility.com] and it realy helped with the API-like heavy-lifting and it was quite easy to implement a RESTful HAL+JSON API on top of it, talking to my MySQL database.&lt;br /&gt;
&lt;br /&gt;
Next step, why not cache some records on the WebApp WebSQL (or SQLite if you prefer). By doing this, the app will look faster and it will also work offline. I started coding the caching mechanism and after a long couple months I realized that I was spending much more time on programming the &amp;quot;support&amp;quot; for my application than the application itself.&lt;br /&gt;
&lt;br /&gt;
Now enter CouchDB/PouchDB. If these names sound weird, you definitely should Google about them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CouchDB ==&lt;br /&gt;
&lt;br /&gt;
CouchDB [http://couchdb.apache.org] is a initiative from Apache Software Foundation that supports a &amp;quot;Database for the Web&amp;quot; (as the creators refer to CouchDB). It is a NoSQL, document-store database, that has several neat features that can really help speeding up your WebApp development:&lt;br /&gt;
&lt;br /&gt;
1) It is fast enough for most applications;&lt;br /&gt;
2) The documents are stored as JSON objects;&lt;br /&gt;
3) It provides authentication for your users;&lt;br /&gt;
4) It is only accessible through HTTP, which makes it perfect for Ajax calls within AppStudio;&lt;br /&gt;
5) It can synchronize seamlessly to other CouchDB instances;&lt;br /&gt;
6) It&#039;s free, and there are PouchDB-like Cloud providers, where you can host your DB for free!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PouchDB ==&lt;br /&gt;
&lt;br /&gt;
PouchDB [http://pouchdb.com] is a JavaScript implementation of CouchDB. It is very easy to add to your AppStudio project (just as easy as adding any JavaScript library) and it provides a rich API and lots of plugins to ease the task of accessing your data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== So what is in for me? ==&lt;br /&gt;
&lt;br /&gt;
Give it a try. It is easier to start with PouchDB as it can all be done within the boundaries of AppStudio. You don&#039;t need to worry about your browser, as PouchDB will use the best persistence method available (IndexedDB first, then WebSQL, then LocalStorage).&lt;br /&gt;
&lt;br /&gt;
Then install CouchDB on your computer, play a little bit with it and when you&#039;re ready for production, you can sign up for an IrisCouch [http://www.iriscouch.com] or Cloudant [http://www.cloudant.com] account and depending on the volume of data you use, it will run for free.&lt;br /&gt;
&lt;br /&gt;
Happy coding!&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7551</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7551"/>
		<updated>2015-08-19T21:19:30Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A Little Bit of Background ==&lt;br /&gt;
&lt;br /&gt;
Before I get into the real thing, I&#039;d like to first share a bit of history:&lt;br /&gt;
&lt;br /&gt;
If you have been into WebApp creation, you probably realized that it is not just the application itself, you&#039;ll need to also have other stuff on your backend to be able to make the application meaningful. Considering I&#039;m an old-fashioned programmer, I initially chose the &amp;quot;comfort zone&amp;quot; and had my server based on a LAMP model (Linux-Apache-MySQL-PHP, while other might prefer WAMP. You can figure out what W stands for).&lt;br /&gt;
&lt;br /&gt;
The MySQL part was easy and creating all the tables and relationships was kind of fun and reminded me of the joy of normalizing data and creating all those relationships, indexes, views and so on. Then I had to think about the hard part: how could I interact with the server DB from my app? Easy: PHP as the frontend and I&#039;m done. A friend of mine recommended a look on [APIgility|http://apigility.com] and it realy helped with the API-like heavy-lifting and it was quite easy to implement a RESTful HAL+JSON API on top of it, talking to my MySQL database.&lt;br /&gt;
&lt;br /&gt;
Next step, why not cache some records on the WebApp WebSQL (or SQLite if you prefer). By doing this, the app will look faster and it will also work offline. I started coding the caching mechanism and after a long couple months I realized that I was spending much more time on programming the &amp;quot;support&amp;quot; for my application than the application itself.&lt;br /&gt;
&lt;br /&gt;
Now enter CouchDB/PouchDB. If these names sound weird, you definitely should Google about them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CouchDB ==&lt;br /&gt;
&lt;br /&gt;
CouchDB is a initiative from Apache Software Foundation that supports a &amp;quot;Database for the Web&amp;quot; (as the creators refer to CouchDB). It is a NoSQL, document-store database, that has several neat features that can really help speeding up your WebApp development:&lt;br /&gt;
&lt;br /&gt;
1) It is fast enough for most applications;&lt;br /&gt;
2) The documents are stored as JSON objects;&lt;br /&gt;
3) It provides authentication for your users;&lt;br /&gt;
4) It is only accessible through HTTP, which makes it perfect for Ajax calls within AppStudio;&lt;br /&gt;
5) It can synchronize seamlessly to other CouchDB instances;&lt;br /&gt;
6) It&#039;s free, and there are PouchDB-like Cloud providers, where you can host your DB for free!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PouchDB ==&lt;br /&gt;
&lt;br /&gt;
PouchDB is a JavaScript implementation of CouchDB. It is very easy to add to your AppStudio project (just as easy as adding any JavaScript library) and it provides a rich API and lots of plugins to ease the task of accessing your data.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== So what is in for me? ==&lt;br /&gt;
&lt;br /&gt;
Give it a try. It is easier to start with PouchDB as it can all be done within the boundaries of AppStudio. You don&#039;t need to worry about your browser, as PouchDB will use the best persistence method available (IndexedDB first, then WebSQL, then LocalStorage).&lt;br /&gt;
&lt;br /&gt;
Then install CouchDB on your computer, play a little bit with it and when you&#039;re ready for production, you can sign up for an IrisCouch or Cloudant account and depending on the volume of data you use, it will run for free.&lt;br /&gt;
&lt;br /&gt;
Happy coding!&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7550</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7550"/>
		<updated>2015-08-19T19:59:43Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A Little Bit of Background ==&lt;br /&gt;
&lt;br /&gt;
Before I get into the real thing, I&#039;d like to first share a bit of history:&lt;br /&gt;
&lt;br /&gt;
If you have been into WebApp creation, you probably realized that it is not just the application itself, you&#039;ll need to also have other stuff on your backend to be able to make the application meaningful. Considering I&#039;m an old-fashioned programmer, I initially chose the &amp;quot;comfort zone&amp;quot; and had my server based on a LAMP model (Linux-Apache-MySQL-PHP, while other might prefer WAMP. You can figure out what W stands for).&lt;br /&gt;
&lt;br /&gt;
The MySQL part was easy and creating all the tables and relationships was kind of fun and reminded me of the joy of normalizing data and creating all those relationships, indexes, views and so on. Then I had to think about the hard part: how could I interact with the server DB from my app? Easy: PHP as the frontend and I&#039;m done. A friend of mine recommended a look on APIgility and it realy helped with the API-like heavy-lifting and it was quite easy to implement a RESTful HAL+JSON API on top of it, talking to my MySQL database.&lt;br /&gt;
&lt;br /&gt;
Next step, why not cache some records on the WebApp WebSQL (or SQLite if you prefer). By doing this, the app will look faster and it will also work offline. I started coding the caching mechanism and after a long couple months I realized that I was spending much more time on programming the &amp;quot;support&amp;quot; for my application than the application itself.&lt;br /&gt;
&lt;br /&gt;
Now enter CouchDB/PouchDB. If these names sound weird, you definitely should Google about them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CouchDB ==&lt;br /&gt;
&lt;br /&gt;
CouchDB is a initiative from Apache Software Foundation that supports a &amp;quot;Database for the Web&amp;quot; (as the creators refer to CouchDB). It is a NoSQL, document-store database, that has several neat features that can really help speeding up your WebApp development:&lt;br /&gt;
&lt;br /&gt;
1) It is fast enough for most applications;&lt;br /&gt;
2) The documents are stored as JSON objects;&lt;br /&gt;
3) It provides authentication for your users;&lt;br /&gt;
4) It is only accessible through HTTP, which makes it perfect for Ajax calls within AppStudio;&lt;br /&gt;
5) It can synchronize seamlessly to other CouchDB instances;&lt;br /&gt;
6) It&#039;s free, and there are PouchDB-like Cloud providers, where you can host your DB for free!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PouchDB ==&lt;br /&gt;
&lt;br /&gt;
PouchDB is a JavaScript implementation of CouchDB. &lt;br /&gt;
&lt;br /&gt;
PouchDB is&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7549</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7549"/>
		<updated>2015-08-19T19:59:22Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== A Little Bit of Background ==&lt;br /&gt;
&lt;br /&gt;
Before I get into the real thing, I&#039;d like to first share a bit of history:&lt;br /&gt;
&lt;br /&gt;
If you have been into WebApp creation, you probably realized that it is not just the application itself, you&#039;ll need to also have other stuff on your backend to be able to make the application meaningful. Considering I&#039;m an old-fashioned programmer, I initially chose the &amp;quot;comfort zone&amp;quot; and had my server based on a LAMP model (Linux-Apache-MySQL-PHP, while other might prefer WAMP. You can figure out what W stands for).&lt;br /&gt;
&lt;br /&gt;
The MySQL part was easy and creating all the tables and relationships was kind of fun and reminded me of the joy of normalizing data and creating all those relationships, indexes, views and so on. Then I had to think about the hard part: how could I interact with the server DB from my app? Easy: PHP as the frontend and I&#039;m done. A friend of mine recommended a look on APIgility and it realy helped with the API-like heavy-lifting and it was quite easy to implement a RESTful HAL+JSON API on top of it, talking to my MySQL database.&lt;br /&gt;
&lt;br /&gt;
Next step, why not cache some records on the WebApp WebSQL (or SQLite if you prefer). By doing this, the app will look faster and it will also work offline. I started coding the caching mechanism and after a long couple months I realized that I was spending much more time on programming the &amp;quot;support&amp;quot; for my application than the application itself.&lt;br /&gt;
&lt;br /&gt;
Now enter CouchDB/PouchDB. If these names sound weird, you definitely should Google about them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== CouchDB ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CouchDB is a initiative from Apache Software Foundation that supports a &amp;quot;Database for the Web&amp;quot; (as the creators refer to CouchDB). It is a NoSQL, document-store database, that has several neat features that can really help speeding up your WebApp development:&lt;br /&gt;
&lt;br /&gt;
1) It is fast enough for most applications;&lt;br /&gt;
2) The documents are stored as JSON objects;&lt;br /&gt;
3) It provides authentication for your users;&lt;br /&gt;
4) It is only accessible through HTTP, which makes it perfect for Ajax calls within AppStudio;&lt;br /&gt;
5) It can synchronize seamlessly to other CouchDB instances;&lt;br /&gt;
6) It&#039;s free, and there are PouchDB-like Cloud providers, where you can host your DB for free!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PouchDB ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PouchDB is a JavaScript implementation of CouchDB. &lt;br /&gt;
&lt;br /&gt;
PouchDB is&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7548</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7548"/>
		<updated>2015-08-19T19:50:28Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Before I get into the real thing, I&#039;d like to first share a bit of history:&lt;br /&gt;
&lt;br /&gt;
If you have been into WebApp creation, you probably realized that it is not just the application itself, you&#039;ll need to also have other stuff on your backend to be able to make the application meaningful. Considering I&#039;m an old-fashioned programmer, I initially chose the &amp;quot;comfort zone&amp;quot; and had my server based on a LAMP model (Linux-Apache-MySQL-PHP, while other might prefer WAMP. You can figure out what W stands for).&lt;br /&gt;
&lt;br /&gt;
The MySQL part was easy and creating all the tables and relationships was kind of fun and reminded me of the joy of normalizing data and creating all those relationships, indexes, views and so on. Then I had to think about the hard part: how could I interact with the server DB from my app? Easy: PHP as the frontend and I&#039;m done. A friend of mine recommended a look on APIgility and it realy helped with the API-like heavy-lifting and it was quite easy to implement a RESTful HAL+JSON API on top of it, talking to my MySQL database.&lt;br /&gt;
&lt;br /&gt;
Next step, why not cache some records on the WebApp WebSQL (or SQLite if you prefer). By doing this, the app will look faster and it will also work offline. I started coding the caching mechanism and after a long couple months I realized that I was spending much more time on programming the &amp;quot;support&amp;quot; for my application than the application itself.&lt;br /&gt;
&lt;br /&gt;
Now enter CouchDB/PouchDB. If you never heard of them, you definitely should Google about them.&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7547</id>
		<title>NoSQL DBs and AppStudio</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=NoSQL_DBs_and_AppStudio&amp;diff=7547"/>
		<updated>2015-08-19T19:02:39Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: NoSQL databases are a very good option for WebApp development, instead of always relying on SQL (local) and on a webserver with an SQL backend, on top of an API (usually PHP).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;( UNDER CONSTRUCTION )&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
	<entry>
		<id>https://wiki.appstudio.dev/index.php?title=Tech_Notes&amp;diff=7546</id>
		<title>Tech Notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.appstudio.dev/index.php?title=Tech_Notes&amp;diff=7546"/>
		<updated>2015-08-19T18:59:11Z</updated>

		<summary type="html">&lt;p&gt;Rcarraretto: /* Tech Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These Tech Notes provide additional information that is not contained in the printed documentation. You may also be interested in our Tutorials. Check back here from time to time for updates!&lt;br /&gt;
&lt;br /&gt;
If you have an idea for a Tech Note, please let us know. We will be happy to post it, giving you full credit.&lt;br /&gt;
&lt;br /&gt;
== Tech Notes ==&lt;br /&gt;
* [[Solutions_to_Common_Problems|Solutions to Common Problems]]&lt;br /&gt;
* [[Compatibility_with_other_versions_of_BASIC|Compatibility with other versions of BASIC]]&lt;br /&gt;
* [[The_role_of_JavaScript,_HTML5_and_WebKit|The role of JavaScript, HTML5 and WebKit]]&lt;br /&gt;
* [[Emulators_and_Simulators|Emulators and Simulators]]&lt;br /&gt;
* [[A_Field_Guide_to_App_Studio Controls|A Field Guide to App Studio Controls]]&lt;br /&gt;
* [[Using Smart Device Sensors]]&lt;br /&gt;
* [[Ajax_made_Simple|Ajax made Simple]]&lt;br /&gt;
* [[Using_the_PhoneGap_API|Using the PhoneGap API: Device, Camera, Contacts, Barcodes]]&lt;br /&gt;
* [[Using_the_PhoneGap_API:_Pushwoosh|Using the PhoneGap API: Pushwoosh]]&lt;br /&gt;
* [[Using SQLite|Files: Using SQLite to save data]]&lt;br /&gt;
* [[SQLite Reference]]&lt;br /&gt;
* [[ToolBox Files]]&lt;br /&gt;
* [[How to run fullscreen in an Android Chrome app]]&lt;br /&gt;
* [[Using Dropbox to save files]]&lt;br /&gt;
* [[Using a Dropbox Datastore]]&lt;br /&gt;
* [[Using Google Glass with AppStudio|Using Google Glass]]&lt;br /&gt;
* [[NoSQL DBs and AppStudio|NoSQL databases: good option for WebApp development]]&lt;br /&gt;
&lt;br /&gt;
=== Distributing your App ===&lt;br /&gt;
* [[Distributing_your_App|Distributing your App]]&lt;br /&gt;
* [[Web_Apps_Compared_to_PhoneGap_Apps|Web Apps Compared to PhoneGap Apps]]&lt;br /&gt;
* [[Using PhoneGap to create an iOS App]]&lt;br /&gt;
* [[Submitting to the iOS App Store]]&lt;br /&gt;
* [[Using PhoneGap to create an Android APK]]&lt;br /&gt;
* [[Submitting to the Google Play and Amazon Stores]]&lt;br /&gt;
* [[Making Desktop Apps with App Studio|Making Desktop Packaged Apps with AppStudio]]&lt;br /&gt;
* [[PhoneGap CLI|Using the PhoneGap CLI]]&lt;br /&gt;
&lt;br /&gt;
== Courses ==&lt;br /&gt;
&lt;br /&gt;
These are the notes for our 4 day course. It assumes the trainees have a programming background. You can follow through the course notes and lab sessions on your own: if you would like on site training please contact us for details.&lt;br /&gt;
&lt;br /&gt;
* [[AppStudio Course]]&lt;br /&gt;
* [https://dl.dropboxusercontent.com/u/4451197/AppStudioCourse.zip AppStudio Course Samples, Labs and Solutions (zip file)]&lt;/div&gt;</summary>
		<author><name>Rcarraretto</name></author>
	</entry>
</feed>