react-native-sqlite-storage
react-native-sqlite-storage copied to clipboard
Full featured SQLite3 Native Plugin for React Native (Android and iOS)
Hello, I would like to generate sqlite file in the specified directory, the first run, sqlite file does not exist, you need to create automatically. I have tried many ways....
Another app didn't see database created by another app Version 6.0.1
fix #522 I remove deprecated params from 'react-native.config.js' for React Native 0.69. Since audolinking automatically assumes that the podspec file is in the root of the package directory, it is...
how to connect with react native web (webpack ). i got an issue  how to clear this.
I am trying import the sql file into database that it opened. But I cannot find the method on the document. I think a solution is executing sql in plain...
I'm working with the follow configuration ``` { name: 'db', createFromLocation: 'mydatabase.db' } ``` And so far woking. The problem is when I open the file using SQLiteStudio for example,...
## Expected Behavior I'm trying to run the following Jest test: ``` const SQLite = require('react-native-sqlite-storage'); it('can connect to the DB', async () => { SQLite.enablePromise(true); const db = await...
The Windows database location is very obscure and I cannot find a wat to change it. On my computer it is C:\Users\dgath\AppData\Local\Packages\2ec69159-e20c-4b1f-a4b4-8e3280dc366d_e0585h415c4d2
Within a promise txns with both SELECT and INSERT/UPDATE sql cannot be executed. On running SELECT sql, the promise is automatically resolved before executing the other sqls like INSERT or...
I'm trying to open an existing database using the createFromLocation option, but I just can't get it to work. I've tried ``` openDatabase({ name: "test", location: 'default', createFromLocation: "1" },...