JQM Quickstart Database Tutorial

Using the database in a JQM app.

🚧

Important Note!

The option of creating new apps with the jQuery Mobile framework was removed but we still support the projects that were created with it earlier.

If you are new to Appery.io Database, start with this simple tutorial. In this tutorial, you’ll learn how to build a JQM mobile app that displays a list of data from the database.

Every mobile app requires a backend (server) to store data or run some logic. Here we will use the database as our backend and so you will start by creating a new database.

Creating New Database

You will start by creating a new database.

  1. Go to the Databases tab.
  2. Click the Create new database button.
  3. Enter a new database name: WarehouseDB. Then click Create.
712

The next step is to create a new custom collection.

Creating New Collection

Now, you are going to create a new collection to hold the warehouse data.

  1. Click the Create new collection button.
  2. Enter the collection name: Goods and click Add.

The new collection has a number of default columns. You are going to create a new column to hold the actual item.

  1. Click +Col.
  2. Enter the column name: item. Set its Type as String.
  3. Click Create column.

You should see a new column created.

It's very simple to add sample data into the collection.

  1. Click +Row to insert a new row into the collection.
  2. Enter Cold drink as the first item.
  3. Enter two more items: Tea and Coffee.
685

Collection data.

That's all you need to do on the database side. The next step is to define Server Code to access the database data.

πŸ“˜

Want to know more?

You can also check this extended document to learn how to access the database and perform all the basic operations with the data stored in a database: reading, creating, editing, and deleting.

Creating Server Code Script to Access the Database

In this section, you are going to create a Server Code script to access the database and make it available for the app (client).

  1. Go to the Server Code page.
  2. Click Create script to create a new script. The editor will load.
  3. Name the script loadGoodsScript and click the Save button.

πŸ“˜

Every new script loads a default sample script to try. Go ahead and delete the script.

  1. On the right-hand side, you will see the Snippets tab. Locate a snippet called retrieveAllObjects and click insert to insert it into the script editor. It should look like this:
var result = Collection.query("dbId", "collectionName");

Now, you need to set your dbId and collectionName in this code.

  1. To set the database ID, go back to the database you have just created and then to its Settings tab. There, locate the database ID (API key) and copy it to clipboard:
992
  1. Paste the key into the script.
  2. Set the collection name to Goods by replacing collectionName by Goods.
  3. Using Snippets again, find the responseSuccess snippet and insert it below the first snippet.

πŸ“˜

Place the cursor below the first code line before inserting.

  1. Replace {"param1":"value1"} with result and save the script. Your code should look like this:
var result = Collection.query("5eb8e8532e22d729ddf3e3b0", "Goods");
Apperyio.response.success(result, "application/json");

Testing Script

This script accesses the database and retrieves all the objects in the Goods collection. It is always a good idea to test the script before using it in an app.

Testing is very easy. On the right-hand side switch to the Run tab and click the Save and run button to invoke the script. You will see the script response showing the items from the database:

Next, you are going to work on the app UI.

πŸ“˜

Want to know more?

You can also check more information about how to work with Database using Server Code scripts in Working with Appery.io Database and Server Code extended guide.

Building App

Creating New JQM App

To create a new app, go to the Apps tab.

  1. Click Create new app button.
  2. For the app name, enter WarehousejQueryApp.
  3. For the app template and type select jQuery Mobile > Blank, then click the Create button.

Next, you are going to design the app page.

Designing the App UI

Once the visual editor has loaded:

  1. Open the Pages > startScreen page.
  2. Select the header area and in the PROPERTIES panel change the header caption to My App.
  3. On the PALETTE, locate the List component and drag & drop it to the screen.
  4. The List component has three items. As the data will be loaded from the database you just need one item. With the list control selected, in PROPERTIES, set Items to 1.

πŸ“˜

Use the breadcrumbs to select the List container (not the List item).

  1. You can also remove the list icon. In PROPERTIES, click Buttons Icon and select the No icon button.

That's all for the app UI. This is how your page should look:

1180

App UI.

Importing the Server Code Script

Now you are going to import the script you created as a service into the app.

  1. Click Create New > Backend Services > Server Code Service.
  2. Select the script you created.
  3. Click the Import selected services button.

The service will be imported. You can quickly test the service.

  1. Open the service, you will find it under the Services folder in the App Builder.
  2. Open the Test tab.
  3. Click the Test button to invoke the service. You should see the items you saved into the database.

There is one last step and that's to set the service response. After you have tested the script, click the Import as response button. This will use the sample JSON response as the response for the service. You can open the Response tab to see how it looks.

Next is to use the service on the page.

Mapping the Service to the UI

Now that you imported the service it's time to add the service to the page and map it to the page.

  1. In the startScreen editor, open the DATA view.
  2. For datasource select Service > loadGoodsService and click Add.
  3. It is a good idea to rename the default service name to: loadGoods.
  4. The service doesn't have any inputs thus you don't need to map Before send event (input).
  5. Click Mapping for Success event. This will allow you to map data from the service to the page.
  6. Using drag & drop, create the following mappings:
  • $[i] to mobilelistitem_x.
  • item to Text (under the list item).
  • This mapping maps the collection of all items (goods) to the list. It will automatically list all the items returned by the service. And a particular item is mapped to the list Text property.
1172

Service mapping.

  1. Once the mapping is done, click Save and return.
    The last step is to invoke the service.

Invoking the Service

To invoke the service:

  1. Switch to the DESIGN view.
  2. Select startScreen in the page breadcrumbs.
  3. Open the EVENTS tab.
  4. For Component, select startScreen.
  5. For Event, select Page show.
  6. For Action, select Invoke service > loadGoods.
  7. Click Save to save all the changes.

You are now ready to test the app.

Testing the App

To test the app in the browser, click the TEST button in the toolbar. A new browser window will open and launch your app.

465

Testing the app.