Book Image

Learning SQLite for iOS

By : Gene Da Rocha
Book Image

Learning SQLite for iOS

By: Gene Da Rocha

Overview of this book

The ability to use SQLite with iOS provides a great opportunity to build amazing apps. Apple's iOS SDK provides native support for SQLite databases. This combination offers the potential to create powerful, data-persistent applications. This book starts with the architecture of SQLite database and introduces you to concepts in SQL . You will find yourself equipped to design your own database system, administer it, and maintain it. Further, you will learn how to operate your SQLite databases smoothly using SQL commands. You will be able to extend the functionality of SQLite by using its vast arsenal of C API calls to build some interesting, exciting, new, and intelligent data-driven applications. Understand how Xcode, HTML5, and Phonegap can be used to build a cross-platform modern app which can benefit from all these technologies - all through creating a complete, customizable application skeleton that you can build on for your own apps.
Table of Contents (15 chapters)
Learning SQLite for iOS
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

PhoneGap plugins


Before starting to develop a software for PhoneGap with SQLite, the environment must be set up properly for the PhoneGap framework to work correctly with SQLite. The PhoneGap environment will enable the SQLite database to be set up and connected with Xcode, toward the end, to produce an iOS application.

There is also a native SQLite plugin for PhoneGap, called Brodysoft (refer to https://build.phonegap.com/plugins/2368), that provides an interface for the storage and usage of the standard Web SQL database standards.

As the demand for mobile technology, mobile apps, and mobile development grows, the need for further advancement, with products such as PhoneGap, will be demanding the following, for example:

  • PhoneGap will have increased application size limits

  • It will have support for different plugins, including the Cordova plugins repository plugins.cordova.io

  • Additional PhoneGap plugins may not have to go through an approval process and can be approved easily

  • There will be a facility...