DerekP
DerekP

Reputation: 69

.NET application to edit SQLite database/file

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

Answers (2)

axel_c
axel_c

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

Steve
Steve

Reputation: 216313

All you have to do is to download the SQLite ADO.Net provider from this site
Then you can follow the general guidelines for ADO.NET using the appropriate classes for SQLite

For more specific questions refer to the FAQ pages on the same site

Upvotes: 1

Related Questions