#General Tauri question that is bothering me.
6 messages · Page 1 of 1 (latest)
use AppData if you want keep the db file unchanged when update, put in the app will be replaced by the new one in update process.
- Use local AppData
- Using local AppData. It gets recreated for each user. If you place it elsewhere you may run into write permission issues
- Not sure if you can encrypt the entire thing, I so seldom use sqlite, but you can at least encrypt each sensitive record in there individually. Otherwise you'll need some manner of adapter for Diesel to handle an encrypted database file
thanks @dense bluff