
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
expo-sqlite-wrapper
Advanced tools
This is an ORM, build around expo-sqlite. It will make operation like UPDATE,SELECT AND INSERT a lot easier to handle
This is an ORM, build around expo-sqlite
. It will make operation like UPDATE
, SELECT
AND INSERT
a lot easier to handle
npm install expo-sqlite expo-sqlite-wrapper
Installation for expo-sqlite
read https://docs.expo.dev/versions/latest/sdk/sqlite/
export interface IDatabase<D extends string> {
/**
* This is a hook you could use in a component
*/
useQuery: IUseQuery;
/**
* Freeze all watchers, this is usefull when for example doing many changes to the db
* and you dont want the watchers to be triggerd many times
*/
disableWatchers: () => IDatabase<D>;
/**
* enabling Watchers will call all the frozen watchers that has not been called when it was frozen
*/
enableWatchers: () => Promise<void>;
/**
* Freeze all hooks, this is usefull when for example doing many changes to the db
* and you dont want the hooks to be triggerd(rerender components) many times
*/
disableHooks: () => IDatabase<D>;
/**
* enabling Hooks will call all the frozen hooks that has not been called when it was frozen
*/
enableHooks: () => Promise<void>;
/**
* BulkSave object
* This will only watchers.onBulkSave
*/
bulkSave: <T extends IBaseModule<D>>(tabelName: D) => Promise<BulkSave<T, D>>;
isClosed?: boolean,
/**
* Its importend that,createDbContext return new database after this is triggered
*/
tryToClose: () => Promise<boolean>;
/**
* Its importend that,createDbContext return new database after this is triggered
*/
close: () => Promise<void>;
/**
* begin transaction
*/
beginTransaction: () => Promise<void>;
/**
* comit the transaction
*/
commitTransaction: () => Promise<void>;
/**
* rollback the transaction
*/
rollbackTransaction: () => Promise<void>;
/**
Auto close the db after every ms.
The db will be able to refresh only if there is no db operation is ongoing.
This is useful, so that it will use less memory as SQlite tends to store transaction in memories which causes the increase in memory over time.
its best to use ms:3600000
the db has to be ideal for ms to be able to close it.
*/
startRefresher: (ms: number) => void;
/**
* return column name for the specific table
*/
allowedKeys: (tableName: D) => Promise<string[]>;
/**
* convert json to IQueryResultItem object, this will add method as savechanges, update and delete methods to an object
*/
asQueryable: <T extends IId<D>>(item: IId<D> | IBaseModule<D>, tableName?: D) => Promise<IQueryResultItem<T, D>>
watch: <T extends IId<D>>(tableName: D) => IWatcher<T, D>;
/**
* Create IQuery object.
* @deprecated since version 1.4.3 use querySelector instead
*/
query: <T extends IId<D>>(tableName: D) => IQuery<T, D>;
/**
* More advanced queryBuilder
* It include join and aggregators and better validations
*/
querySelector: <T extends IId<D>>(tabelName: D) => IQuerySelector<T, D>;
/**
* execute sql eg
* query: select * from users where name = ?
* args: ["test"]
*/
find: (query: string, args?: any[], tableName?: D) => Promise<IBaseModule<D>[]>
/**
* trigger save, update will depend on id and unique columns
*/
save: <T extends IId<D>>(item: (T) | ((T)[]), insertOnly?: Boolean, tableName?: D, saveAndForget?: boolean) => Promise<T[]>;
where: <T extends IId<D>>(tableName: D, query?: any | T) => Promise<T[]>;
/**
* this method translate json-sql to sqlite select.
* for more info about this read json-sql documentations
* https://github.com/2do2go/json-sql/tree/4be018c0662dacba06ddf033d18e71ebf93ee7c3/docs
* example
* {
type: 'select',
table: 'DetaliItems',
condition:{"DetaliItems.id":{$gt: 1}, "DetaliItems.title": "Epic Of Caterpillar"},
join: {
Chapters: {
on: {'DetaliItems.id': 'Chapters.detaliItem_Id'}
}
}
}
*/
jsonToSql: <T>(jsonQuery: any, tableName?: D) => Promise<T[]>;
/**
* delete object based on Id
*/
delete: (item: IId<D> | (IId<D>[]), tableName?: D) => Promise<void>;
/**
* execute sql without returning anyting
*/
execute: (query: string, args?: any[]) => Promise<boolean>;
/**
* Drop all tables
*/
dropTables: () => Promise<void>;
/**
* Setup your table, this will only create a table if it dose not exist
*/
setUpDataBase: (forceCheck?: boolean) => Promise<void>;
/**
* find out if there some changes between object and db table
*/
tableHasChanges: <T extends IBaseModule<D>>(item: ITableBuilder<T, D>) => Promise<boolean>;
/**
* execute an array of sql
*/
executeRawSql: (queries: SqlQuery[], readOnly: boolean) => Promise<void>;
}
Please report any issues that you find so we could make this lib even better.
FAQs
This is an ORM, build around expo-sqlite. It will make operation like UPDATE,SELECT AND INSERT a lot easier to handle
The npm package expo-sqlite-wrapper receives a total of 17 weekly downloads. As such, expo-sqlite-wrapper popularity was classified as not popular.
We found that expo-sqlite-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.