Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brodycj/cordova-sqlite-evmax-reader-test-app
https://github.com/brodycj/cordova-sqlite-evmax-reader-test-app
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/brodycj/cordova-sqlite-evmax-reader-test-app
- Owner: brodycj
- Created: 2017-12-22T01:59:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T02:00:15.000Z (about 7 years ago)
- Last Synced: 2024-07-31T00:17:19.944Z (5 months ago)
- Language: JavaScript
- Size: 189 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cordova sqlite evmax parallel reader test app
**AUTHOR:** [@brodybits (Christopher J. Brody aka Chris Brody)](https://github.com/brodybits)
LICENSE: GPL or commercial
**NOTE:** This project includes JQuery (2.2.4) and Bootstrap (3.3.6) under the MIT license. Otherwise there is no code copied from other sources.
**IMPORTANT:** Whitelist and intent items are omitted from this test app.
## Dependencies
- Bootstrap (3.3.6) - included (MIT license)
- JQuery (2.2.4) - included (MIT license)
- Cordova sqlite plugin - please add the desired version from the Cordova CLI as described below## To add another plugin
```shell
cordova plugin add my-plugin-id --save
```## How to run
1. Add the desired Cordova sqlite plugin version, for example:
```shell
cordova plugin add cordova-sqlite-storage --save
```2. Add the desired platform(s), for example:
```shell
cordova platform add android
```3. Do `cordova prepare` (may not always be necessary but good to be on the safe side):
```shell
cordova prepare
```4. Run it on your mobile emulator or device, for example:
```shell
cordova run android
```## Functionality
- Upon startup: open a database and CREATE the test table
- alert dialog test
- Echo test
- Self test
- Location reload
- String test 1
- String test 2 (string as a SQL parameter)
- Show record count (query parallel database reader)
- Add record
- Add 100 records from JavaScript object after delay
- Delete all records
- Follow link to page 2
- Change window.location to page 2## Multi-page test
It is possible to switch between two pages using "follow link" buttons. The main page also has a button to go to page 2 by changing `window.location`. There is also a button on both pages to try `location.reload()`.
The sqlite plugin should continue to work after the user changes to another page or triggers `location.reload()`.