Getting started with SQLite using C#/Microsoft Visual Studio
dev.to·5h·
Discuss: DEV
Flag this post

Many of us are probably pretty familiar with SQL and the relational database concept in general, so it likely needs no introduction from me. Here I’m going to walk through the process I went through in setting up SQLite for a lightweight desktop app, using Visual Studio.

What is SQLite?

SQL databases are often connected to over a network so that data can be stored and accessed for, say, a web app. But it doesn’t have to be that way – SQLite allows you to use a locally-held database, and is widely used for desktop applications, embedded software, and more. sqlite.org reckons there are over 1 trillion SQLite databases in active use. You probably use one a dozen times a day without realising. It’s lightweight, secure, fast, cross-platform, and extremely wide…

Similar Posts

Loading similar posts...