Git Product home page Git Product logo

cordova-sqlite-plugin's Introduction

CordovaSQLitePlugin

Cordova SQLite plugin with a straightforward low-level API.

Why this module?

To use a SQLite database from a Cordova app, there is the cordova-sqlite-storage plugin. It is a good choice if you like the WebSQL API but in case you don't, there are not many options.

What's wrong with the WebSQL API? It is simply the worst API ever created throughout the history of computing. Jokes aside, in my opinion there is something fundamentally wrong: when we are in the middle of a transaction, there is no way to run something asynchronously.

This is why I created this module, I extracted all the good part (the native code) from cordova-sqlite-storage and replaced the less good part (the JavaScript code implementing the WebSQL API) by a much simpler low-level API.

You can use this module directly but I would rather recommend to go with the AnySQL module which is a slightly higher level API.

Installation

With Cordova CLI tool:

cordova plugin add cordova-sqlite-plugin

Usage

var SQLite = window.cordova.require('cordova-sqlite-plugin.SQLite');

var sqlite = new SQLite('example');

sqlite.open(function(err) {
  if (err) throw err;
  sqlite.query('SELECT ? + ? AS solution', [2, 3], function(err, res) {
    if (err) throw err;
    console.log(res.rows[0].solution);
  });
});

API

new SQLite(name)

Create an instance of the SQLite database with the specified name.

Example

var SQLite = window.cordova.require('cordova-sqlite-plugin.SQLite');

var sqlite = new SQLite('example');

sqlite.open(callback)

Open the SQLite database.

sqlite.open(function(err) {
  if (err) throw err;
  // ...
});

sqlite.query(sql, [values], callback)

Query the SQLite database.

sqlite.query('SELECT ? + ? AS solution', [2, 3], function(err, res) {
  if (err) throw err;
  console.log(res.rows[0].solution); // => 5
});

sql

A string containing the SQL query.

values

An optional array of values matching the ? placeholders in the SQL query.

callback

A function with the following parameters:

  • error: an instance of Error in case something wrong happens during the query.
  • result: an object with the following properties:
    • rows: the rows returned by the query.
    • affectedRows: the number of affected rows by the query.
    • insertId: the auto-generated id by an INSERT query.

sqlite.close(callback)

Close the SQLite database.

sqlite.close(function(err) {
  if (err) throw err;
});

SQLite.deleteDatabase(name, callback)

Delete the SQLite database with the specified name.

SQLite.deleteDatabase('example', function(err) {
  if (err) throw err;
});

License

MIT

cordova-sqlite-plugin's People

Contributors

andym84 avatar kakysha avatar mvila avatar

Watchers

 avatar

Forkers

byteball

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.