react-native-sqlite-2
react-native-sqlite-2 copied to clipboard
SQLite3 Native Plugin for React Native for iOS, Android, Windows and macOS.
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() {...
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?
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) =>...
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...
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, 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",...