Reputation: 69
I'm designing an app in .NET which will enable me to click a button, and in turn, an SQLite file/database will be automatically edited (with a basic query). In order to do this do I need to implement a driver for SQLite, into my application, which will allow it to read the database file? Any help is appreciated, I'm a complete novice.
I've looked at the possibility of using ADO.NET and dbExpress thus far.
Upvotes: 0
Views: 118
Reputation: 6796
You don't need to implement the driver yourself, there are plenty of SQLite drivers for .NET out there already.
A couple of them
Upvotes: 0