C# WindowsFormApplication password login? local.

Reapt

In Runtime
Messages
261
Location
Colorado
I'm creating a nice little software for my parents to make tasks easier for them.

This software will store personal information. I know its highly unlikely someone would get access to this. But for learning purposes I want to know if its possible to have a login system on a local machine.

I know how its done with MSsql but this will have no server, and hopefully no database. Possible to use on-run time config files?
 
You can use a local SQLite or other local datasource. This would be the easiest, since you already know how to interact with databases.

Could also use encrypted XML/config files somehow as well.
 
You can use a local SQLite or other local datasource. This would be the easiest, since you already know how to interact with databases.

Could also use encrypted XML/config files somehow as well.

Never tried using sqlite with C#. How do i connect to it? Cant seem to get connection to work atleast not in data sources.
 
Ah sorry, was one of the first hits on Google and didn't look at the date. Thanks for the alternate link.

Sent from my Nexus 7 using Tapatalk
 
Back
Top Bottom