...
Expand | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
This feature enables your mobile application to access SQLite databases. It enables you to store data in a structured database that can be queried using a standard SQL syntax. Supported PlatformsThis feature is supported in the following platforms:
InstallationExecute the following command in your Cordova project directory:
UsageAssume that there is a "SQL LITE" button on your mobile application that will use SQLite when clicked. The following is a sample code snippet that can used in the listener JS file for invoking SQLite storage in the mobile application.
|
Expand | |||||
---|---|---|---|---|---|
| |||||
This feature enables your mobile application to access Web SQL storage. It enables you to store data in a structured database that can be queried using a standard SQL syntax. UsageAssume that there is a "Web SQL" button on your mobile application that will use Web SQL when clicked. The following is a sample code snippet that can used in the listener JS file for invoking Web SQL storage in the mobile application.
|
Expand | |||||
---|---|---|---|---|---|
| |||||
This feature enables your mobile application to access session storage. UsageAssume that there is a "SESSION STORAGE" button on your mobile application that will use session storage when clicked. The following is a sample code snippet that can used in the listener JS file for invoking session storage in the mobile application.
|
Expand | |||||
---|---|---|---|---|---|
| |||||
This feature enables your mobile application to access local storage. It provides a simple and synchronous key-value pair storage. UsageAssume that there is a "LOCAL STORAGE" button on your mobile application that will use local storage when clicked. The following is a sample code snippet that can used in the listener JS file for invoking local storage in the mobile application.
|