<title>SQLite Home Page</title>
<table border="0" width="100%">
<tr><td valign="top" width="65%">
<p>SQLite is a software library that implements a
<a href="selfcontained.html">self-contained</a>,
<a href="serverless.html">serverless</a>,
<a href="zeroconf.html">zero-configuration</a>,
<a href="transactional.html">transactional</a>
SQL database engine.
SQLite is the [most widely deployed]
database engine in the world.
The source code for SQLite is in the
<a href="copyright.html">public domain</a>.
<a href="about.html">More...</a></p>
<hr style="color: #044a64" height="2">
<h3>Sponsors</h3>
<p>Continuing enhancement and maintenance of SQLite is made possible
by <a href="consortium.html">SQLite Consortium</a> members, including:</p>
<a name="consortium_members"></a>
<center>
<table border="0" cellpadding="15">
<tcl>
set sponsors {
{name Mozilla
url https://www.mozilla.com/
image mozilla.gif
blurb "Working to preserve choice and innovation on the internet."
}
{name Bloomberg
url https://www.bloomberg.com/
image bloomberg.gif
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."
}
{name Facebook
url https://www.facebook.com/
image fb.gif
blurb "Giving people the power to share and make the world more open and connected."
}
}
set nspons [llength $sponsors]
for {set i 0} {$i<$nspons} {incr i} {
if {$i%2==0} {hd_putsnl "<tr>"}
hd_putsnl " <td><a id='a$i'><img id='i$i'></a></td>"
if {$i%2==1 || $i==$nspons-1} {hd_putsnl "</tr>"}
}
hd_putsnl "</table></center>"
hd_putsnl "<script language=\"JavaScript\">"
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});
for(var i=0; i<sponsors.length; i++){
var e = document.getElementById("a"+i);
e.href = sponsors[i].href;
var x = document.getElementById("i"+i);
x.src = "images/foreignlogos/"+sponsors[i].src;
if(sponsors[i].wx>0){
x.width = sponsors[i].wx;
x.height = sponsors[i].hx;
}
}
}
hd_putsnl "</script>"
</tcl>
</td>
<td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td>
<td valign="top">
<h3>Current Status</h3>
<p><ul>
<li><a href="releaselog/3_13_0.html">Version 3.13.0</a>
of SQLite is recommended for all new development.
</li>
</ul></p>
<h3>Common Links</h3>
<p><ul>
<li> <a href="features.html">Features</a> </li>
<li> <a href="whentouse.html">When to use SQLite</a> </li>
<li> <a href="faq.html">Frequently Asked Questions</a> </li>
<li> <a href="quickstart.html">Getting Started</a> </li>
<li> <a href="lang.html">SQL Syntax</a>
<ul>
<li> <a href="pragma.html#toc">Pragmas</a>
<li> <a href="lang_corefunc.html">SQL functions</a>
<li> <a href="lang_datefunc.html">Date & time functions</a>
<li> <a href="lang_aggfunc.html">Aggregate functions</a>
<li> <a href="json1.html">JSON functions</a>
</ul>
</li>
<li> <a href="c3ref/intro.html">C/C++ Interface Spec</a>
<ul>
<li> <a href="cintro.html">Introduction</a>
<li> <a href="c3ref/funclist.html">List of C-language APIs</a>
</ul>
</li>
<li> <a href="tclsqlite.html">The TCL Interface Spec</a>
<li> <a href="http://www.sqlite.org/src/timeline">Development Timeline</a> </li>
<li> <a href="http://www.sqlite.org/src/wiki?name=Bug+Reports">Report a Bug</a> </li>
<li> <a href="news.html">News</a> </li>
</ul></p>
</td></tr>
</table>