Socket
Socket
Sign inDemoInstall

@capacitor-community/sqlite

Package Overview
Dependencies
Maintainers
33
Versions
242
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capacitor-community/sqlite

Community plugin for native & electron SQLite databases


Version published
Weekly downloads
12K
decreased by-4.03%
Maintainers
33
Weekly downloads
Β 
Created
Source


SQLITE DATABASE

@capacitor-community/sqlite


CAPACITOR 3


Capacitor community plugin for Native and Electron SQLite Databases. In Native databases could be encrypted with SQLCipher



Maintainers

MaintainerGitHubSocial
QuΓ©au Jean Pierrejepiqueau

CAPACITOR 3 (Master)

🚨 !!! Sorry for Electron developper, they will have to wait for @capacitor-community/electron release 4 before getting the @capacitor-community/sqlite Electron plugin part !!! 🚨

🚨 Since release 3.1.2 ->> 🚨

Thanks to Nirajhinge and Chris, an example of using the TypeORM driver in a Ionic/Vue app has been developed see https://github.com/jepiqueau/vue-typeorm-app.

🚨 Since release 3.0.0-rc.2 ->> 🚨

Thanks to Chris, a driver to TypeORM is now available

🚨 Since release 3.0.0-beta.13 ->> 🚨

  • GlobalSQLite secret and newsecret are deprecated

  • The user can now set its own secure secret (passphrase)

    • use setEncryptionSecret ONCE to migrate encrypted databases from secret to secure stored secret

    • use changeEncryptionSecret to change your secure stored secret

  • iOS used KeyChain service to store the secret

  • Android used Encrypted SharedPreferences to store the secret, the minimun sdk should be set to 23 (limitation from Google)

🚨 Since release 3.0.0-beta.13 ->> 🚨

🚨 Since release 3.0.0-beta.11 ->> 🚨

  • Checking of types has been removed in all methods of the plugin both iOS & Android. This has been achieved to allow the use of others RDBMS types. The type checking is now under the responsability of the developers.

  • NULL values are now returned as null

  • values for the query method is now an Array of any.

  • option to disable transaction for the execute, executeSet, run.

🚨 Since release 3.0.0-beta.11 <<- 🚨

The test has been achieved on:

REFACTOR (Move to branch 2.9.x)

The 2.9.x is now πŸ›‘ NOT MAINTAINED ANYMORE πŸ›‘.

The refactor offers now (since 2.9.0-beta.1) all the features that the previous was offering. It has been a quite heavy process, hoping that the developpers will take benefit from it.

The main reasons for it:

  • multiple database connections
  • db connector allowing for easy commands db.open(), db.close, ...
  • improve the response time of the encrypted database by removing the internal open and close database for each sqlite query
  • moving to the latest androidx.sqlite.db.xxx
  • offering encryption for Electron platform by using @journeyapps/sqlcipher on MacOs, !!! NOT ON WINDOWS !!!
  • cleaning and aligning the code between platforms
  • allowing developers to develop typeorm or spatialite drivers.

This was discussed lengthly in issue#1 and issue#52

Refactor available for Android, iOS and Electron platforms.

The test has been achieved on:

Other frameworks will be tested later

  • Stencil

@INITIAL πŸ›‘ (Move to branch 2.4.x)

The 2.4.x is now πŸ›‘ NOT MAINTAINED ANYMORE πŸ›‘.

To install it

npm i --save @capacitor-community/sqlite@initial

The test has been achieved on:

Browser Support

The plugin follows the guidelines from the Capacitor Team,

meaning that it will not work in IE11 without additional JavaScript transformations, e.g. with Babel.

Installation

npm install @capacitor-community/sqlite
npm run build
npx cap sync
npx cap add android
npx cap add ios
// npx cap add @capacitor-community/electron not working

IOS

  • on iOS, no further steps needed.

Android

  • On Android, no further steps needed.

Electron 🚧 (NOT WORKING YET)

  • On Electron, go to the Electron folder of YOUR_APPLICATION

Build & Run

npm run build
npx cap copy

IOS

npx cap open ios

Android

npx cap open android

Electron 🚧 (NOT WORKING YET)

npx cap open @capacitor-community/electron

Issues

issues

Configuration

No configuration required for this plugin

Supported methods

NameAndroidiOSElectron MacElectron WindowsWeb
createConnectionβœ…βœ…πŸš§πŸš§βŒ
closeConnectionβœ…βœ…πŸš§πŸš§βŒ
isConnectionβœ…βœ…πŸš§πŸš§βŒ
open (non-encrypted DB)βœ…βœ…πŸš§πŸš§βŒ
open (encrypted DB)βœ…βœ…πŸš§πŸš§βŒ
closeβœ…βœ…πŸš§πŸš§βŒ
executeβœ…βœ…πŸš§πŸš§βŒ
executeSetβœ…βœ…πŸš§πŸš§βŒ
runβœ…βœ…πŸš§πŸš§βŒ
queryβœ…βœ…πŸš§πŸš§βŒ
deleteDatabaseβœ…βœ…πŸš§πŸš§βŒ
importFromJsonβœ…βœ…πŸš§πŸš§βŒ
exportToJsonβœ…βœ…πŸš§πŸš§βŒ
createSyncTableβœ…βœ…πŸš§πŸš§βŒ
setSyncDateβœ…βœ…πŸš§πŸš§βŒ
getSyncDateβœ…βœ…πŸš§πŸš§βŒ
isJsonValidβœ…βœ…πŸš§πŸš§βŒ
isDBExistsβœ…βœ…πŸš§πŸš§βŒ
addUpgradeStatementβœ…βœ…πŸš§πŸš§βŒ
copyFromAssetsβœ…βœ…πŸš§πŸš§βŒ
isDBOpenβœ…βœ…πŸš§πŸš§βŒ
isDatabaseβœ…βœ…πŸš§πŸš§βŒ
isTableExistsβœ…βœ…πŸš§πŸš§βŒ
getDatabaseListβœ…βœ…πŸš§πŸš§βŒ
addSQLiteSuffixβœ…βœ…πŸš§πŸš§βŒ
deleteOldDatabasesβœ…βœ…πŸš§πŸš§βŒ
checkConnectionsConsistencyβœ…βœ…πŸš§πŸš§βŒ
isSecretStoredβœ…βœ…πŸš§πŸš§βŒ
setEncryptionSecretβœ…βœ…πŸš§πŸš§βŒ
changeEncryptionSecretβœ…βœ…πŸš§πŸš§βŒ

Supported SQLite Types

-Datatypes In SQLite Version 3

Documentation

API

Framework's Usage

Applications demonstrating the use of the plugin

Ionic/Angular

Ionic/React (to come later)

Ionic/Vue (to come later)

Vue (to come later)

Usage

Dependencies

The IOS and Android codes are using SQLCipher allowing for database encryption

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Jean Pierre QuΓ©au

πŸ’»

Paul Antoine

πŸ’»

Karyfars

πŸ’»

Chriswep

πŸ“–

Nirajhinge

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 28 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc