SQLite Forum

ODBC 64bit drivers for windows download
Login
NOTES:

* GUI front ends AND ODBC drivers for SQLite3 have particular versions of SQLite3 statically linked. You do NOT need to download SQLite3 executables or libraries.
* However, the best way to learn SQLite3 is from the SQLite3 CLI. Download the [32-bit version](https://www.sqlite.org/2020/sqlite-dll-win32-x86-3340000.zip) or the [64-bit version](https://www.sqlite.org/2020/sqlite-dll-win64-x64-3340000.zip). You will find [tutorials](https://www.sqlitetutorial.net/) a very handy way to track your learning process.
* Windows 10 64 bit is capable of running [32-](http://www.ch-werner.de/sqliteodbc/sqliteodbc.exe) or [64-bit](http://www.ch-werner.de/sqliteodbc/sqliteodbc_w64.exe) applications i.e. ODBC32 or ODBC64 drivers will work fine on Windows 10 64 bit.
* You need at least one [sample database](https://cdn.sqlitetutorial.net/wp-content/uploads/2018/03/chinook.zip) to start with.

What programming language do you intend to use with the ODBC32 or ODBC64 drivers? <i>(It is necessary to know this in order to provide you with sample code).</i>

* If using C#, you can use System.Data.Odbc with ODBC connections.
* Other options with C# are [System.Data.SQLite](https://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki) or [Microsoft.Data.SQLite](https://docs.microsoft.com/en-us/dotnet/standard/data/sqlite/?tabs=netcore-cli).
* Else, you might be able to use [ADODB](https://www.w3schools.com/asp/ado_ref_connection.asp).

The above contains several links for your convenience in acquiring background information on using SQLite3 programatically.