2022-01-05 17:06:08 +01:00
|
|
|
## Description:
|
|
|
|
|
|
|
|
`sqlite` is a thin wrapper for [the SQLite library](https://sqlite.org/), which in turn is
|
|
|
|
"a C-language library that implements a small, fast, self-contained,
|
|
|
|
high-reliability, full-featured, SQL database engine."
|
|
|
|
|
2020-12-01 04:00:41 +01:00
|
|
|
# Install SQLite Dependency
|
2019-12-18 11:22:22 +01:00
|
|
|
|
2022-01-05 17:06:08 +01:00
|
|
|
Before you can use this module, you must first have the SQLite development
|
|
|
|
library installed on your system.
|
|
|
|
|
2020-12-01 04:00:41 +01:00
|
|
|
**Fedora 31**:
|
2019-12-18 11:22:22 +01:00
|
|
|
|
2020-12-01 04:00:41 +01:00
|
|
|
`sudo dnf -y install sqlite-devel`
|
2019-12-18 11:22:22 +01:00
|
|
|
|
2019-12-21 08:00:28 +01:00
|
|
|
|
2020-12-01 04:00:41 +01:00
|
|
|
**Ubuntu 20.04**:
|
2019-12-21 08:00:28 +01:00
|
|
|
|
2020-12-01 04:00:41 +01:00
|
|
|
`sudo apt install -y libsqlite3-dev`
|
2019-12-21 08:00:28 +01:00
|
|
|
|
2020-12-01 04:00:41 +01:00
|
|
|
|
|
|
|
**Windows**:
|
|
|
|
- Download the source zip from [SQLite Downloads](https://sqlite.org/download.html)
|
|
|
|
- Create a new `sqlite` subfolder inside `v/thirdparty`
|
|
|
|
- Extract the zip into that folder
|