159 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			159 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html><head>
 | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 | |
| <link href="../sqlite.css" rel="stylesheet">
 | |
| <title>SQLite Release 3.11.1 On 2016-03-03</title>
 | |
| <!-- path=../ -->
 | |
| </head>
 | |
| <body>
 | |
| <div class=nosearch>
 | |
| <a href="../index.html">
 | |
| <img class="logo" src="../images/sqlite370_banner.gif" alt="SQLite" border="0">
 | |
| </a>
 | |
| <div><!-- IE hack to prevent disappearing logo --></div>
 | |
| <div class="tagline desktoponly">
 | |
| Small. Fast. Reliable.<br>Choose any three.
 | |
| </div>
 | |
| <div class="menu mainmenu">
 | |
| <ul>
 | |
| <li><a href="../index.html">Home</a>
 | |
| <li class='mobileonly'><a href="javascript:void(0)" onclick='toggle_div("submenu")'>Menu</a>
 | |
| <li class='wideonly'><a href='../about.html'>About</a>
 | |
| <li class='desktoponly'><a href="../docs.html">Documentation</a>
 | |
| <li class='desktoponly'><a href="../download.html">Download</a>
 | |
| <li class='wideonly'><a href='../copyright.html'>License</a>
 | |
| <li class='desktoponly'><a href="../support.html">Support</a>
 | |
| <li class='desktoponly'><a href="../prosupport.html">Purchase</a>
 | |
| <li class='search' id='search_menubutton'>
 | |
| <a href="javascript:void(0)" onclick='toggle_search()'>Search</a>
 | |
| </ul>
 | |
| </div>
 | |
| <div class="menu submenu" id="submenu">
 | |
| <ul>
 | |
| <li><a href='../about.html'>About</a>
 | |
| <li><a href='../docs.html'>Documentation</a>
 | |
| <li><a href='../download.html'>Download</a>
 | |
| <li><a href='../support.html'>Support</a>
 | |
| <li><a href='../prosupport.html'>Purchase</a>
 | |
| </ul>
 | |
| </div>
 | |
| <div class="searchmenu" id="searchmenu">
 | |
| <form method="GET" action="../search">
 | |
| <select name="s" id="searchtype">
 | |
| <option value="d">Search Documentation</option>
 | |
| <option value="c">Search Changelog</option>
 | |
| </select>
 | |
| <input type="text" name="q" id="searchbox" value="">
 | |
| <input type="submit" value="Go">
 | |
| </form>
 | |
| </div>
 | |
| </div>
 | |
| <script>
 | |
| function toggle_div(nm) {
 | |
| var w = document.getElementById(nm);
 | |
| if( w.style.display=="block" ){
 | |
| w.style.display = "none";
 | |
| }else{
 | |
| w.style.display = "block";
 | |
| }
 | |
| }
 | |
| function toggle_search() {
 | |
| var w = document.getElementById("searchmenu");
 | |
| if( w.style.display=="block" ){
 | |
| w.style.display = "none";
 | |
| } else {
 | |
| w.style.display = "block";
 | |
| setTimeout(function(){
 | |
| document.getElementById("searchbox").focus()
 | |
| }, 30);
 | |
| }
 | |
| }
 | |
| function div_off(nm){document.getElementById(nm).style.display="none";}
 | |
| window.onbeforeunload = function(e){div_off("submenu");}
 | |
| /* Disable the Search feature if we are not operating from CGI, since */
 | |
| /* Search is accomplished using CGI and will not work without it. */
 | |
| if( !location.origin || !location.origin.match || !location.origin.match(/http/) ){
 | |
| document.getElementById("search_menubutton").style.display = "none";
 | |
| }
 | |
| /* Used by the Hide/Show button beside syntax diagrams, to toggle the */
 | |
| function hideorshow(btn,obj){
 | |
| var x = document.getElementById(obj);
 | |
| var b = document.getElementById(btn);
 | |
| if( x.style.display!='none' ){
 | |
| x.style.display = 'none';
 | |
| b.innerHTML='show';
 | |
| }else{
 | |
| x.style.display = '';
 | |
| b.innerHTML='hide';
 | |
| }
 | |
| return false;
 | |
| }
 | |
| </script>
 | |
| </div>
 | |
| <h2>SQLite Release 3.11.1 On 2016-03-03</h2><p><b>Changes in version 3.11.0 (2016-02-15):</b></p>
 | |
| <p><ol class='lessindent'>
 | |
| <p><b>General improvements:</b>
 | |
| <li value='1'>Enhanced <a href="../wal.html">WAL mode</a> so that it works efficiently with transactions that are
 | |
|     larger than the <a href="../pragma.html#pragma_cache_size">cache_size</a>.
 | |
| <li>Added the <a href="../fts5.html#the_detail_option">FTS5 detail option</a>.
 | |
| <li>Added the "EXTRA" option to <a href="../pragma.html#pragma_synchronous">PRAGMA synchronous</a> that does a sync of the
 | |
|     containing directory when a rollback journal is unlinked in DELETE mode,
 | |
|     for better durability.  The <a href="../compile.html#extra_durable">SQLITE_EXTRA_DURABLE</a> compile-time option enables
 | |
|     <a href="../pragma.html#pragma_synchronous">PRAGMA synchronous=EXTRA</a> by default.
 | |
| <li>Enhanced the <a href="../optoverview.html">query planner</a> so that it is able to use
 | |
|     a <a href="../queryplanner.html#covidx">covering index</a> as part of the <a href="../optoverview.html#or_opt">OR optimization</a>.
 | |
| <li>Avoid recomputing <a href="../lang_createtable.html#notnullconst">NOT NULL</a> and <a href="../lang_createtable.html#ckconst">CHECK constraints</a> on unchanged
 | |
|     columns in <a href="../lang_update.html">UPDATE</a> statement.
 | |
| <li>Many micro-optimizations, resulting in a library that is 
 | |
|     faster than the previous release.
 | |
| <p><b>Enhancements to the <a href="../cli.html">command-line shell</a>:</b>
 | |
| <li>By default, the shell is now in "auto-explain" mode.  The output of
 | |
|     <a href="../lang_explain.html">EXPLAIN</a> commands is automatically formatted.
 | |
| <li>Added the ".vfslist" <a href="../cli.html#dotcmd">dot-command</a>.
 | |
| <li>The <a href="../compile.html#enable_explain_comments">SQLITE_ENABLE_EXPLAIN_COMMENTS</a> compile-time option is now turned
 | |
|     on by default in the standard builds.
 | |
| <p><b>Enhancements to the <a href="../tclsqlite.html">TCL Interface</a>:</b>
 | |
| <li>If a database connection is opened with the "-uri 1" option, then
 | |
|     <a href="../uri.html">URI filenames</a> are honored by the "backup" and "restore" commands.
 | |
| <li>Added the "-sourceid" option to the "sqlite3" command.
 | |
| <p><b>Makefile improvements:</b>
 | |
| <li>Improved pthreads detection in configure scripts.
 | |
| <li>Add the ability to do MSVC Windows builds from the <a href="../download.html">amalgamation tarball</a>.
 | |
| <p><b>Bug fixes</b>
 | |
| <li>Fix an issue with incorrect sharing of VDBE temporary registers between
 | |
|     co-routines that could cause incorrect query results in obscure cases.  Ticket
 | |
|     <a href="https://www.sqlite.org/src/info/d06a25c84454a">d06a25c84454a</a>.
 | |
| <li>Fix a problem in the <a href="../c3ref/result_subtype.html">sqlite3_result_subtype()</a> interface that could
 | |
|     cause problems for the <a href="../json1.html">json1</a> extension under obscure circumstances.
 | |
|     Fix for ticket
 | |
|     <a href="https://www.sqlite.org/src/info/f45ac567eaa9f9">f45ac567eaa9f9</a>.
 | |
| <li>Escape control characters in JSON strings.  Fix for ticket
 | |
|     <a href="https://www.sqlite.org/src/info/ad2559db380abf8">ad2559db380abf8</a>.
 | |
| <li>Reenable the xCurrentTime and xGetLastError methods in the built-in
 | |
|     unix <a href="../vfs.html">VFSes</a> as long as <a href="../compile.html#omit_deprecated">SQLITE_OMIT_DEPRECATED</a> is not defined.
 | |
| <p><b>Backwards Compatibility:</b>
 | |
| <li>Because of continuing security concerns, the two-argument version of
 | |
|     of the seldom-used and little-known <a href="../fts3.html#f3tknzr">fts3_tokenizer()</a> function is
 | |
|     disabled unless SQLite is compiled with the <a href="../compile.html#enable_fts3_tokenizer">SQLITE_ENABLE_FTS3_TOKENIZER</a>.
 | |
| </ol>
 | |
| <p><b>Additional changes in version 3.11.1:</b></p>
 | |
| <p><ol class='lessindent'>
 | |
| <li value='19'>Improvements to the Makefiles and build scripts used by VisualStudio.
 | |
| <li>Fix an <a href="../fts5.html">FTS5</a> issue in which the 'optimize' command could cause index corruption.
 | |
| <li>Fix a buffer overread that might occur if <a href="../fts5.html">FTS5</a> is used to query a corrupt
 | |
|     database file.
 | |
| <li>Increase the maximum "scope" value for the <a href="../spellfix1.html">spellfix1</a> extension from 6 to 30.
 | |
| <li>SQLITE_SOURCE_ID: "2016-03-03 16:17:53 f047920ce16971e573bc6ec9a48b118c9de2b3a7"
 | |
| <li>SHA1 for sqlite3.c: 3da832fd2af36eaedb05d61a8f4c2bb9f3d54265
 | |
| 
 | |
| </ol></p>
 | |
| 
 | |
|       <p>A <a href="../changes.html">complete list of SQLite releases</a>
 | |
|       in a single page and a <a href="../chronology.html">chronology</a> are both also available.  
 | |
|       A detailed history of every
 | |
|       check-in is available at
 | |
|       <a href="http://www.sqlite.org/src/timeline">
 | |
|       SQLite version control site</a>.</p>
 | |
|     
 |