react-native-sqlite-storage icon indicating copy to clipboard operation
react-native-sqlite-storage copied to clipboard

Full featured SQLite3 Native Plugin for React Native (Android and iOS)

Results 149 react-native-sqlite-storage issues
Sort by recently updated
recently updated
newest added

Thanks for this awesome library. This is not a bug report, but a question. For my project I need a SpatialSQLite database. I cannot find any react native project that...

## Expected Behavior Calling `SQLite.enablePromise(true)` after its already been called should result in a no-op. ## Current Behavior Calling `SQLite.enablePromise(true)` more than once will break the library. ## Possible Solution...

1) Followed the steps to configure React Native for Windows https://microsoft.github.io/react-native-windows/docs/getting-started 2) Install the NPM package for SQLite https://github.com/andpor/react-native-sqlite-storage?tab=readme-ov-file 3) Install Windows 10 SDK 10.0.18362.0 based on the error on...

With Android 15 Beta + Device who has Page Size 16Kb mode (ex Pixel 8), SQLite crash due to .so libraries not aligned to 16Kb Mode. There is a breaking...

I am working on my first react native app and settled on sqlite for data management. However, I cant initialize the data bank. I always get the error message >...

The SELECT query using MATCH should return results that match the search term ('simple') from the FTS5 table. Specifically, the expected behavior is for the results.rows.raw() to contain the expected...

I have the following code in a function ``` return Database.createDatabase() .then((database)=> { return insertSurvey(parsedData,database) }) .then((outa)=>{ console.log(outa) }) ``` The createDatabase enables sqlite promises The insertSurvey code is as...

_I know this module isn't really being maintained anymore, but thought people should know..._ **If you're trying to delete your database in order to replace it with a new one,...

Hi, Thanks for maintaining this library! I have a question regarding iCloud sync. I'm relatively new to cloud syncing so please forgive any basic questions. 1. If I've setup the...