❔ WPF, .NET] using DBMS
I made a 'to do list' program with WPF, and I want to add a save function for list data. Do you usually use dbms to maintain the data (text lists saved in the To do list) when the program is re-executed after it is terminated?
7 Replies
depends, for some of my stuff i prefer text (xml or json) so that i don't have to deal with binaries (for example if i want to edit or view the file from somewhere else)
also, less dependencies
I'd "usually" use text files for that sort of thing because it's the sort of program one might write when very new to the language. These days I'd probably use sqlite
oh txt file is usually use about parameter saving. isn't it? , I thought a lot of sentence is proper using DBMS
oh txt file is usually use about parameter saving. isn't it? , I thought a lot of sentence is proper using DBMS
CSV is just a text file with special meaning assigned to certain characters, but it's one of the most common formats I have to deal with on a daily basis. ¯\_(ツ)_/¯
if you don't have too many relationships between classes you can easily read and write in a json file thousands of objects
which should be enough for a to do list program
if you want more then for sure next step would be at least sqlite
Thanks, inform to me . I try !
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.