Book Image

Mastering PhoneGap Mobile Application Development

By : Kerri Shotts
Book Image

Mastering PhoneGap Mobile Application Development

By: Kerri Shotts

Overview of this book

PhoneGap is a useful and flexible tool that enables you to create complex hybrid applications for mobile platforms. In addition to the core technology, there is a large and vibrant community that creates third-party plugins that can take your app to the next level. This book will guide you through the process of creating a complex data-driven hybrid mobile application using PhoneGap, web technologies, and third-party plugins. A good foundation is critical, so you will learn how to create a useful workflow to make development easier. From there, the next version of JavaScript (ES6) and the CSS pre-processor SASS are introduced as a way to simplify creating the look of the mobile application. Responsive design techniques are also covered, including the flexbox layout module. As many apps are data-driven, you'll build an application throughout the course of the book that relies upon IndexedDB and SQLite. You'll also download additional content and address how to handle in-app purchases. Furthermore, you’ll build your own customized plugins for your particular use case. When the app is complete, the book will guide you through the steps necessary to submit your app to the Google Play and Apple iTunes stores.
Table of Contents (19 chapters)
Mastering PhoneGap Mobile Application Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Inserting data and binding values


In SQL, we store data using two statements (usually): INSERT INTO and UPDATE. The first is used when you're adding data to a table, and the second is used to update data that already exists. There's also a variant that permits the merging of data: data that doesn't exist is added, and data that does exist is updated. Various SQL database servers do this differently, but SQLite uses INSERT OR REPLACE INTO.

Note

The snippets in this section are located at snippets/08/ex4-insert-data/ in the code package of this book. When using the interactive snippet playground, select 8: Web SQL Database and Example 4.

The INSERT INTO statement looks as follows:

INSERT [OR REPLACE] INTO tableName (
    fieldName [, ...]
    ) VALUES (
    values [, ...]
    )

The UPDATE statement looks as follows:

UPDATE tableName
  SET fieldName = value
WHERE condition

In many ways, the UPDATE statement is a lot more readable than the INSERT INTO statement, mainly because with the latter, you...