andpor / react-native-sqlite-storage

Full featured SQLite3 Native Plugin for React Native (Android and iOS)
MIT License
2.75k stars 521 forks source link

Copy the real database to the Downloads folder and transfer to another device #481

Open baharb opened 3 years ago

baharb commented 3 years ago

Hi I want to sync two database in two phones together. I tried to copy database to Download folder and then transfer to another phone. I make a folder in assets folder and used this : SQLite.openDatabase({name: 'zagrosDB', createFromLocation: '~db/zagrosDB.db'})

I have two problems:

  1. when I copy database from assets to downloads folder, that's not real database with all of its data.
  2. When I send database to another device, I can't save it to assets folder.

Is there anything wrong?