Custom dialect for kysely to use together with capacitor sqlite.
Ensure that you have kysely, @capacitor-community/sqlite with capacitor-sqlite-kysely
installed.
npm install --save kysely @capacitor-community/sqlite capacitor-sqlite-kysely
yarn add kysely @capacitor-community/sqlite capacitor-sqlite-kysely
pnpm install --save kysely
pnpm install --save @capacitor-community/sqlite
pnpm install --save capacitor-sqlite-kysely
Please refer to @capacitor-community/sqlite
as there is manual configuration necessary to run on the web for example.
import { Kysely } from 'kysely';
import CapacitorSQLiteKyselyDialect from 'capacitor-sqlite-kysely';
import { CapacitorSQLite, SQLiteConnection } from '@capacitor-community/sqlite';
export default new Kysely({
dialect: new CapacitorSQLiteKyselyDialect(
new SQLiteConnection(CapacitorSQLite),
{ name: 'database' }
),
});
interface CapacitorSQLiteKyselyConfig {
/**
* name of database
*
* @default database
*/
name: string;
/**
* whether the database should be encrypted
*
* @default false
*/
encryption: boolean;
/**
* whether the database should be encrypted
*
* @default 'no-encryption'
* @modes "no-encryption", "encryption", "secret", "decryption", "newsecret", "wrongsecret"
*/
mode: string;
/**
* @default 1
*/
version: number;
/**
* whether use the database in read only mode
*
* @default false
*/
readonly: boolean;
}
For further readings please refer to @capacitor-community/sqlite.
MIT License, see LICENSE
.