For an online game I'm making, I need to be able to add users and their stats to a database, an example table:
Username, Password, Email, Wins, Loses
The username will be the unique key, and from there I need to retrieve the other information.
I also need to do other things such as find all the usernames with a given e-mail.
I have been searching for a few hours for an SQLite tutorial that shows C or C++ on how to do these sorts of simple tasks.
Could anyone recommend a tutorial like this or possibly some insight on performing some of the above tasks with the SQLite library?
Thanks