@capacitor-community/sqlite
Capacitor community plugin for Native and Electron SQLite Databases. - In Native, databases could be encrypted with `SQLCipher` - In Electron, databases could be encrypted with `better-sqlite3-multiple-ciphers`
Maintainer | GitHub | Social |
---|---|---|
Robin Genz | robingenz | @robin_genz |
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
then add plugin to main capacitor.config.ts
file:
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.jeep.app.ionic7.angular.sqlite',
appName: 'ionic7-angular-sqlite-starter',
webDir: 'www',
server: {
androidScheme: 'https'
},
plugins: {
CapacitorSQLite: {
iosDatabaseLocation: 'Library/CapacitorDatabase',
iosIsEncryption: true,
iosKeychainPrefix: 'angular-sqlite-app-starter',
iosBiometric: {
biometricAuth: false,
biometricTitle : "Biometric login for capacitor sqlite"
},
androidIsEncryption: true,
androidBiometric: {
biometricAuth : false,
biometricTitle : "Biometric login for capacitor sqlite",
biometricSubTitle : "Log in using your biometric"
},
electronIsEncryption: true,
electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases",
electronMacLocation: "/Volumes/Development_Lacie/Development/Databases",
electronLinuxLocation: "Databases"
}
}
};
export default config;
- Updating to Capacitor 5
- Releases
- Changelog
- Issues
- Capacitor documentation
- Datatypes In SQLite Version 3
- IncrementalUpgradeDatabaseVersion
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.
- Copy manually the file
sql-wasm.wasm
fromnode_modules/sql.js/dist/sql-wasm.wasm
to thesrc/assets
folder of YOUR_APP
- Copy manually the file
sql-wasm.wasm
fromnode_modules/sql.js/dist/sql-wasm.wasm
to thepublic/assets
folder of YOUR_APP
- 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 toapp/build.gradle
:
packagingOptions {
exclude 'build-data.properties'
}
See #301 and SO question for more information.
-
Check/Add the following: Gradle JDK version 17 Android Gradle Plugin Version 8.0.0 In variables.gradle
minSdkVersion = 22 compileSdkVersion = 33 targetSdkVersion = 33
In AndroidManifest.xml
<application android:allowBackup="false" android:fullBackupContent="false" android:dataExtractionRules="@xml/data_extraction_rules"
In res/xml create a file
data_extraction_rules.xml
containing:<?xml version="1.0" encoding="utf-8"?> <data-extraction-rules> <cloud-backup> <exclude domain="root" /> <exclude domain="database" /> <exclude domain="sharedpref" /> <exclude domain="external" /> </cloud-backup> <device-transfer> <exclude domain="root" /> <exclude domain="database" /> <exclude domain="sharedpref" /> <exclude domain="external" /> </device-transfer> </data-extraction-rules>
- On Electron, go to the Electron folder of YOUR_APPLICATION
cd electron
npm install --save better-sqlite3-multiple-ciphers
npm install --save electron-json-storage
npm install --save jszip
npm install --save node-fetch@2.6.7
npm install --save crypto
npm install --save crypto-js
npm install --save-dev @types/better-sqlite3
npm install --save-dev @types/electron-json-storage
npm install --save-dev @types/crypto-js
-
Important:
node-fetch
version must be<=2.6.7
; otherwise you'll get an error running the app. -
Important: if you are using
@capacitor-community/electron v5
- you have to stick to Electron@25.8.4 till further notice so do:
npm install --save-dev electron@25.8.4
npm uninstall --save-dev electron-rebuild
npm install --save-dev @electron/rebuild
npm install --save-dev electron-builder@24.6.4
- in electron folder open the
tsconfig.json
file and add"skipLibCheck": true,
- on iOS, no further steps needed.
Name | Android | iOS | Electron | Web |
---|---|---|---|---|
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 | β | β | β | β |
getFromLocalDiskToStore | β | β | β | β |
saveToLocalDisk | β | β | β | β |
beginTransaction | β | β | β | β |
commitTransaction | β | β | β | β |
rollbackTransaction | β | β | β | β |
isTransactionActive | β | β | β | β |
-
Web ionic7-angular-sqlite-app Ionic 7 Angular 16 Capacitor 5 SQLite CRUD operations for Web.
-
Native ionic7-angular-sqlite-app Ionic 7 Angular 16 Capacitor 5 SQLite CRUD operations for iOS, Android and Electron.
-
angular-sqlite-synchronize-app (Not Updated)
-
Web ionic7-react-sqlite-app Ionic7 React18.2.0 Vite4.3.9 Capacitor 5 SQLite CRUD operations for Web.
-
Web ionic7-react-sqlite-app Ionic7 React18.2.0 Vite4.3.9 Capacitor 5 SQLite CRUD operations for iOS, Android and Electron.
-
Web ionic7-vue-sqlite-app Ionic7 Vue3.2.45 Vite4.3.9 Capacitor 5 SQLite CRUD operations for Web.
-
Web ionic7-vue-sqlite-app Ionic7 Vue3.2.45 Vite4.3.9 Capacitor 5 SQLite CRUD operations for iOS, Android and Electron.
-
Web quasar-sqlite-app Quasar2.6.0 Capacitor 5 SQLite CRUD operations for Web.
-
Native quasar-sqlite-app Quasar2.6.0 Capacitor 5 SQLite CRUD operations for iOS, Android and Electron.
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 better-sqlite3-multiple-ciphers
, electron-json-storage
and node-fetch
from 5.0.4.
The Web code is using the Stencil component jeep-sqlite
based on sql.js
, localforage
. and jszip
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
A big thank you to Jean Pierre QuΓ©au, who maintained this plugin until version 6.0.0.