I am working on a mobile app using Qt, in which user needs to log in by using Ip, Port, Username and Password values. Each time app is closed those values are lost. I want to be able to store the last login values for the user.
I did try to use LocalStorage 2.0 but I got it really messed up, I couldn't figure out how to keep a single row updated and instead I was inserting new row every time user saved his settings. What I wanted to do each time user pressed save settings just update that first row.
Could anyone advice me on what could I do to store just 4 values of user settings and update them if need be.
Thank you