Hello good morning ,I have a small application in which I would like to save the data and load them when the user needs them and I wonder if I should use a ymal , toml,etc file instead of a database(SQL).
We need to know more. Typically, you use a local db like SQLITE if you have quite a few records to keep track of, that is, too many to conveniently keep in memory. If you need to share with other users then maybe a server based DB. If it’s just a single user app and yoiu are storing some settings and a bit of state for your objects, then json, etc., would probably be fine. PySide has a settings mechanism built in.
than you sir,it is clear to me