This is SQLite Visual Basic tutorial. In this tutorial, you will learn the basics of programming SQLite with the Visual Basic language.
last modified July 6, 2020
This is a Visual Basic tutorial for the SQLite database. It covers the basics of SQLite programming with Visual Basic. The examples were created and tested on Linux.
- [Introduction](intro/)
- [Reading data with SqliteDataReader](read/)
- [DataSet](dataset/)
- [Working with images](images/)
- [Getting database metadata](meta/)
- [Transactions](trans/)
SQLite is an embedded relational database engine. It is a self-contained, serverless, zero-configuration and transactional SQL database engine. SQLite implements most of the SQL-92 standard for SQL. The SQLite engine is not a standalone process. Instead, it is statically or dynamically linked into the application. An SQLite database is a single ordinary disk file that can be located anywhere in the directory hierarchy.
Visual Basic is a modern, high-level, general-purpose, object-based programming language. It is the second most important language of the .NET framework. The main design goal of the language was to create an easy to use and learn programming language. It was derived from the classic BASIC language.
The SQLite tutorial covers the SQLite embedded
database engine. If you need to refresh your knowledge of the Visual Basic language, there is a full
Visual Basic tutorial on ZetCode.
The C# SQLite tutorial,
PHP SQLite3 tutorial
and SQLite Python tutorial provide programming
tutorials for the C#, Perl, PHP and Python language.