Right-click on your application and select "Open folder in your window application" and then go to:īIN -> Debug and extract your application here.Īfter this again right-click on your application and select "Add reference" and go to:īrowser -> BIN -> Debug and select DLL file (Sqlite Net.dll).ĭouble-click on the button and write the following code.
Open your Visual Studio and select new project and in Visual C# select "Windows Forms Application" and provide the name as Sqlite and click on OK.
The download first link is a ZIP file so you extract this file to your application in the debug folder. There is a link, from this link you can get a DLL file link and at this link you go to the download section and download the latest version. Basically C# doesn't support Sqlite itself so we need a third-party DLL to connect to a Sqlite database. Most of mobile and small databases don't require a server and if we want to make a standalone application for one computer that doesn't depend on another server then Sqlite is perfect for us.įor more information about Sqlite you can go to this link: Sqlite. So we don't require any server for a Sqlite database. We use Sqlite because all ther other databases that we use generally require a server and Sqlite is a database that we can embed within our system.
HOW TO INSTALL SQLITE WINDOWS HOW TO
Here I will explain how to use and connect to Sqlite in a Windows application.