New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@capacitor-community/sqlite

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

4.6.2
Version published
Weekly downloads
15K
-0.82%
Maintainers
42
Weekly downloads
 
Created


SQLITE DATABASE

@capacitor-community/sqlite


CAPACITOR 4


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



Maintainers

MaintainerGitHubSocial
Quéau Jean Pierrejepiqueau

To install:

npm install --save @capacitor-community/sqlite
npx cap sync
yarn add @capacitor-community/sqlite
npx cap sync
pnpm install --save @capacitor-community/sqlite
pnpm install --save @jeep-sqlite
pnpm install --save sql.js
npx cap sync

More Reading:

Web Quirks

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. You'll need the usual capacitor/android/react npm script to build and copy the assets folder.

For Angular framework
  • Copy manually the file sql-wasm.wasm from node_modules/sql.js/dist/sql-wasm.wasm to the src/assets folder of YOUR_APP
For Vue & React frameworks
  • Copy manually the file sql-wasm.wasm from node_modules/sql.js/dist/sql-wasm.wasm to the public/assets folder of YOUR_APP

Android Quirks

In case you get the following error when building your app in Android Studio: x files found with path 'build-data.properties'. You can you add the following code to app/build.gradle:

    packagingOptions {
        exclude 'build-data.properties'
    }

See #301 and SO question for more information.

Electron Quirks

  • On Electron, go to the Electron folder of YOUR_APPLICATION
cd electron
npm install --save sqlite3
npm install --save jszip
npm install --save node-fetch@2.6.7
npm install --save-dev @types/sqlite3
  • Important: node-fetch version must be <=2.6.7; otherwise you'll get an error running the app.

IOS Quirks

  • on iOS, no further steps needed.

Supported Methods by Platform

NameAndroidiOSElectronWeb
createConnection (ReadWrite)
createConnection (ReadOnly)
closeConnection (ReadWrite)
closeConnection (ReadOnly)
isConnection (ReadWrite)
isConnection (ReadOnly)
open (non-encrypted DB)
open (encrypted DB)
close
getUrl
getVersion
execute
executeSet
run
query
deleteDatabase
importFromJson
exportToJson
deleteExportedRows
createSyncTable
setSyncDate
getSyncDate
isJsonValid
isDBExists
addUpgradeStatement
copyFromAssets
isDBOpen
isDatabase
isTableExists
getTableList
getDatabaseList
getMigratableDbList
addSQLiteSuffix
deleteOldDatabases
moveDatabasesAndAddSuffix
checkConnectionsConsistency
isSecretStored
setEncryptionSecret
changeEncryptionSecret
clearEncryptionSecret
checkEncryptionSecret
initWebStore
saveToStore
getNCDatabasePath
createNCConnection
closeNCConnection
isNCDatabase
transaction
getFromHTTPRequest
isDatabaseEncrypted
isInConfigEncryption
isInConfigBiometricAuth

Documentation & APIs

Ionic/Angular

Ionic/Angular TypeORM app

Ionic/React

React+Vite

Ionic/Vue

Vue

Vue+Vite

Vue TypeORM app

SolidJS+Vite

Dependencies

The iOS and Android codes are using SQLCipher allowing for database encryption. The iOS codes is using ZIPFoundation for unzipping assets files. The Electron code is using sqlite3 and node-fetch from 4.2.0. The Web code is using the Stencil component jeep-sqlite based on sql.js, localforage, and jszip.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

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

FAQs

Package last updated on 24 Feb 2023

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