<title>SQLite Home Page</title>
<div class="rightsidebar desktoponly border2px">
<h3 align="center">Common Links</h3>
<tcl>common_links</tcl>
</div>
<h3>What Is SQLite?</h3>
<p>SQLite is a C-language library that implements a
[footprint|small],
[faster than the filesystem|fast],
[self-contained],
[high-reliability],
[full-featured SQL|full-featured],
SQL database engine.
SQLite is the [most used] database engine in the world.
SQLite is built into all mobile phones and most computers and
comes bundled inside countless other applications that people
use every day.
<a href="about.html">More Information...</a>
<p>
The SQLite [file format] is stable, cross-platform, and
backwards compatible and the developers pledge to keep it
that way through at least the year 2050. SQLite database
files are commonly used as containers to transfer rich
content between systems
[affshort|[1]]
[SQLAR|[2]]
[appformat|[3]]
and as a long-term archival format
for data
[recommended storage format|[4]].
There are over 1 trillion (1e12)
SQLite databases in active use
[most used|[5]].
<p>
SQLite [https://sqlite.org/src|source code]
is in the [public-domain] and is free to
everyone to use for any purpose.
<h3>Latest Release</h3>
<a href="releaselog/3_27_0.html">Version 3.27.0</a> ([dateof:3.27.0]).
<a class="button" href="download.html">Download</a>
<a class="button" href="chronology.html">Prior Releases</a>
<div class="mobileonly">
<h3>Common Links</h3>
<tcl>common_links</tcl>
</div>
<br clear="both">
<hr class="xhr">
<p>Ongoing development and support of SQLite is made possible in part
by <a href="consortium.html">SQLite Consortium</a> members, including:</p>
<a name="consortium_members"></a>
<style>
#sponsors {
margin:auto;
width:80%;
}
.onesponsor a img {
width:200px;
max-width:200px;
padding:1ex;
}
</style>
<div id="sponsors"></div>
<script>
<tcl>
set sponsors {
{name Bloomberg
url https://www.bloomberg.com/
image bloomberg.png
blurb "A world leader in financial-information technology."
}
{name Bentley
url https://www.bentley.com/
image bentley.gif
blurb "Comprehensive software solutions for Sustaining Infrastructure."
}
{name NDS
url http://www.nds-association.org/
image nds.png
blurb "The leading map standard for automotive infotainment and autonomous driving."
}
{name Expensify
url https://www.expensify.com/
image expensify.png
width 225
height 32
blurb "We power the most exciting companies in the world using SQLite."
}
}
set sep { var sponsors = [}
set nspons 0
foreach spons $sponsors {
hd_putsnl $sep\173
set sep ","
unset -nocomplain x
array set x $spons
hd_putsnl " \"name\":\"$x(name)\","
hd_putsnl " \"href\":\"$x(url)\","
hd_putsnl " \"src\":\"$x(image)\","
if {[info exists x(width)]} {
hd_putsnl " \"wx\":$x(width),"
hd_putsnl " \"hx\":$x(height)"
} else {
hd_putsnl " \"wx\":0"
}
hd_puts " \175"
incr nspons
}
unset -nocomplain x
hd_putsnl "\];"
hd_puts {
for(var i=0; i<sponsors.length; i++){sponsors[i].idx = Math.random();}
sponsors.sort(function(a,b){return a.idx-b.idx});
var h = "";
for(var i=0; i<sponsors.length; i++){
h += "<span class='onesponsor'><a href='";
h += sponsors[i].href;
h += "'><img src='images/foreignlogos/";
h += sponsors[i].src;
h += "'></a></span>\n";
}
document.getElementById("sponsors").innerHTML = h;
}
</tcl>
</script>
<br clear="both">
<hr class="xhr">