C
C#5mo ago
Jur

Need to keep track of things in a local application

I need to keep track of bearer tokens (1 per hour) and product catalog content (10 requests per day which i receive as csv). It has to remember that data even when the application shuts down. What is the best way to do this? It has to be a local application. Do I just throw it into a local sql database or is there a better way? I'm currently using WPF but I'm open for rebuilding since I'm trying to improve the program
2 Replies
SCShocked from Human Resources
Throw it into a local SQLite or JSON file
Jur
Jur5mo ago
Thank you!