Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Product] SQLite #2442

Merged
merged 13 commits into from Feb 13, 2023
53 changes: 53 additions & 0 deletions products/sqlite.md
@@ -0,0 +1,53 @@
---
title: SQLite
category: db
iconSlug: sqlite
permalink: /sqlite
alternate_urls:
- /sqlite3
marcwrobel marked this conversation as resolved.
Show resolved Hide resolved
versionCommand: sqlite3 --version
releasePolicyLink: https://www.sqlite.org/support.html
changelogTemplate: "https://www.sqlite.org/changes.html#version_{{'__LATEST__'|replace:'.','_'}}"
releaseDateColumn: true
activeSupportColumn: false
eolColumn: Support Status

# This git mirror only contains versions from 3.6.10.
auto:
- git: https://github.com/sqlite/sqlite.git
marcwrobel marked this conversation as resolved.
Show resolved Hide resolved
regex: '^version-(?<major>\d+)\.(?<minor>\d+)(\.(?<patch>\d+))?$'

releases:
- releaseCycle: "3"
eol: false
latest: "3.40.1"
latestReleaseDate: 2022-12-28
releaseDate: 2004-06-18

- releaseCycle: "2"
releaseDate: 2001-09-28
marcwrobel marked this conversation as resolved.
Show resolved Hide resolved
# 3.0.7 release date, because it is the first stable release in the 3.x line
eol: 2004-09-18
latest: "2.8.17"
latestReleaseDate: 2005-12-19

- releaseCycle: "1"
releaseDate: 2000-08-17
eol: 2001-09-28
latest: "1.0.32"
latestReleaseDate: 2001-07-23

---

> SQLite is an in-process library that implements a self-contained, serverless, zero-configuration,
> transactional SQL database engine. The code for SQLite is in the public domain and is thus free
marcwrobel marked this conversation as resolved.
Show resolved Hide resolved
> for use for any purpose, commercial or private.

SQLite follows [semantic versioning](https://semver.org) since [3.9.0](https://www.sqlite.org/versionnumbers.html).
Only the latest version is supported, but [various professional support options](https://www.sqlite.org/prosupport.html)
are available. The most notable one is the [Technical Support](https://sqlite.org/com/tech.html)
which gives access to support for any version of SQLite up to a year old.

adriens marked this conversation as resolved.
Show resolved Hide resolved
Developers made a pledge to [_support SQLite through the year 2050_](https://www.sqlite.org/lts.html).
This doesn't mean they are supporting [all SQLite releases](https://www.sqlite.org/chronology.html),
it means they plan as if they will be supporting SQLite until 2050.