react-native-sqlite-2
react-native-sqlite-2 copied to clipboard
SQLite3 Native Plugin for React Native for iOS, Android, Windows and macOS.
I'd love to use SQLite in my React Native project, but I'm experiencing this issue: `sqlite.ts` ```typescript const { default: SQLite } = require("react-native-sqlite-2"); class Sqlite { static db: any;...
fixes #105 I can't really think of a reason not to have this be the default. I actually can't even think of a reason for adding an option either, so...
It appears that both the IOS and Android implementation cache database connections, by name. This causes #109, but also surprises users who rely on working with more than one connection....
I've got a problem when starting an SQL transaction. It also appear on your test application. The database is correctly opened and there is no error before the first SQL...
Hi, wondering whether this package support encryption?
I am getting an error on transaction ``` cannot commit - no transaction is active ``` ``` export const createTablesIfNeeded = (database: Database) => new Promise((resolve, reject) => { database.transaction(...
I just did a phone-to-phone transfer on iOS 15 and found that my DB didn't make it to the new phone. I'm in the process of seeing if this is...
I feel like the database files generated should have `.sqlite` appended to them to follow apple's guidelines that all files should have extensions when possible.
Hi There, I'm working on react-native-windows, below is the version information ``` "react": "17.0.1", "react-native": "0.64.0", "react-native-windows": "^0.64.0-0" "react-native-sqlite-2": "^3.3.0", ``` I was able to open the database as mentioned...
Having issues building with the newest react-native-windows. For some reason having a target framework of "uap10.0" is invalid. I instead pointed it at 10586 and my build issues were solved....