npm install --save capacitor-data-storage-sqlite npx cap sync On iOS, no further steps are needed. On Android, no further steps are needed. On Web, npm install --save localforage On Electron npm install --save @capacitor-community/electron npx cap add @capacitor-community/electron ...
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 maincapacitor.config.tsfile: import{CapacitorConfig}from'@capacitor/cli';constconfig:CapacitorConfig={appId...
@pkzOR @ogadepoju if finally fix this in 3.4.1 by allowing the databases path location in the capacitor.config.ts file of the application. ... plugins: { CapacitorSQLite: { electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases", electronMacLocation: "/Users/Shared/CapacitorDatabases", ...
A free, fast, and reliable CDN for @geomatico/capacitor-community-sqlite. Community plugin for native & electron SQLite databases
docs(ce-plugins): Add SQLite, SQLite Storage and Video Player plugins (#2589) (78a28da), closes #2589 docs(ce-plugins): Remove or replace deprecated plugins (#2419) (dfc1ed6), closes #2419 docs(clipboard): update read example removing options (#2564) (49e9f8d), closes #2564 docs(co...
Note: This API isnotmeant to be used as a local database. If your app stores a lot of data, has high read/write load, or requires complex querying, we recommend taking a look at a SQLite-based solution. One such solution isIonic Secure Storage, a SQLite-based engine with full encrypt...
docs(ce-plugins): Add SQLite, SQLite Storage and Video Player plugins (#2589) (78a28da), closes #2589 docs(ce-plugins): Remove or replace deprecated plugins (#2419) (dfc1ed6), closes #2419 docs(clipboard): update read example removing options (#2564) (49e9f8d), closes #2564 docs(co...
The most widely supported option is SQLite. There are a number of community-maintained SQLite plugins that should work in Capacitor, includingcapacitor-sqliteandcordova-plugin-sqlite. The Capacitor team also offers anenterprise SQLite storage solutionwith encryption support and integration withsecure key ...
jepiqueau/capacitor-data-storage-sqlite/blob/21421eaabbeaed5304268ec3ca74f68957d2587c/src/web-utils/StorageDatabaseHelper.ts import LocalForage from 'jeep-localforage'; import { Data } from './Data'; //const DATABASE: string = "storageIDB"; ...
Hi! I have my first app running in Ionic but now I need to run into my device because it is a databse app SQLITE so far so good using Android Studio to debug and use it but now I wanna use LiveReload to see the changes l…