v/vlib/sqlite
Alexander Medvednikov fbb9e65c0f all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
..
README.md
orm.v sokol: byte => u8 2022-04-15 16:12:05 +03:00
result_code.v
sqlite.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
sqlite_orm_test.v
sqlite_test.v
stmt.v

README.md

Description:

sqlite is a thin wrapper for the SQLite library, which in turn is "a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine."

Install SQLite Dependency

Before you can use this module, you must first have the SQLite development library installed on your system.

Fedora 31:

sudo dnf -y install sqlite-devel

Ubuntu 20.04:

sudo apt install -y libsqlite3-dev

Windows:

  • Download the source zip from SQLite Downloads
  • Create a new sqlite subfolder inside v/thirdparty
  • Extract the zip into that folder