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

SQLite3 Native Plugin for React Native for iOS, Android, Windows and macOS.

Results 33 react-native-sqlite-2 issues
Sort by recently updated
recently updated
newest added

Sometime in Android device, txn.executeSql not return anything, ( even error or success functions are not triggering ) . this is my code. namespace DbConnection { export function getInstance() {...

needs-reproduction

Hi there, My app works fine on Android but crashes on iOS. Here is xCode stack error: ``` 2020-10-13 04:24:22.527075-0400 MYAPP[37090:15788039] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:...

I'm following this guide for windows: https://microsoft.github.io/react-native-windows/docs/getting-started and add a native module as documented here: https://microsoft.github.io/react-native-windows/docs/native-modules-using As a total Visual Studio newbie, trying to add any of the solution files...

I'm wondering about it. As `react-native-sqlite-storage` supports MacOS out of the box too. Is MacOS and iOS usage the same?

question

I am trying to get column names from table with following code: ```javascript db.transaction(txn => { txn.executeSql("PRAGMA table_info('table')", [], (txn, res) => { console.log(txn, res); resolve(res.rows); }, (txn, err) =>...

question

I'm using this library in conjunction with `pouchdb-adapter-react-native-sqlite` ultimately to act as a performant backend for RxDB: our use case is supporting potentially offline devices. I'm encountering a whole bunch...

needs-reproduction

I looked at the `openDatabase` function ```js function openDatabase(name, version, description, size, callback) {} ```` and it seems it has _one callback parameter_ which is used either on success or...

Hello, Is there any way to dump the database into a file (db or sql file) ?

question

Hello, it is possible to use an existing database on Android ? Thanks in advance!

I am facing this error recently which it leading to the library. any idea how solve it? my packages at the moment (related to sqlite 2 and pouchdb): "pouchdb-adapter-react-native-sqlite": "^1.0.3",...

needs-reproduction