]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Update documentation with new hyperlinks. No changes to code.
authordrh <drh@noemail.net>
Fri, 26 Apr 2013 15:55:57 +0000 (15:55 +0000)
committerdrh <drh@noemail.net>
Fri, 26 Apr 2013 15:55:57 +0000 (15:55 +0000)
FossilOrigin-Name: 640eb54ad6aac9bc7109cba167389a9bcec3f21e

manifest
manifest.uuid
src/sqlite.h.in

index 914f1bde6e0c6821d38c2e0db3117d1a0ebd086d..59fe24e66e032327f7935c017e9e81634f037391 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Rebalance\sFTS\sexpressions\safter\sparsing\sto\slimit\srecursion\sduring\sevaluation.\sAvoid\srecursion\swhen\sdeleting\sFTS\sexpression\strees.\sEnforce\sa\slimit\s(currently\s12)\son\sthe\sdepth\sof\san\sexpression\stree.
-D 2013-04-26T14:13:15.156
+C Update\sdocumentation\swith\snew\shyperlinks.\s\sNo\schanges\sto\scode.
+D 2013-04-26T15:55:57.095
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in ce81671efd6223d19d4c8c6b88ac2c4134427111
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -193,7 +193,7 @@ F src/resolve.c 83cc2d942ee216bc56956c6e6fadb691c1727fa1
 F src/rowset.c 64655f1a627c9c212d9ab497899e7424a34222e0
 F src/select.c 6bfbe11e2fef81c5e18d30513ab6c69f171667eb
 F src/shell.c 5d527e5d08f05ec2c43ff194ea44bf62b974f4c9
-F src/sqlite.h.in ec279b782bea05db63b8b29481f9642b406004af
+F src/sqlite.h.in f5efcffff16619129bcb92ac352a77fa758f86c1
 F src/sqlite3.rc fea433eb0a59f4c9393c8e6d76a6e2596b1fe0c0
 F src/sqlite3ext.h d936f797812c28b81b26ed18345baf8db28a21a5
 F src/sqliteInt.h de835c584032769461c123a564381f9808542c0e
@@ -1062,7 +1062,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
-P 460752b8575320163d2659bb7ff24aff41e2bb66 2648966f17bc1b783ef6d3b2368c613f6e02945e
-R 3adacbaf5ab67ae1f94478e13972158e
-U dan
-Z 40f0df5151b2a7d6fa4a01e133941564
+P 49d23ef61f9ce2ffe13237b51a0e01b0b46ba96b
+R 9dfdc1bbf9c2e5197fa469091ec011ea
+U drh
+Z 247eb74d6133c2eb692e1fce731d0d35
index 64a04650536565f0f56d35b8904cef6e00056b7c..de2ac0cb317ebbc49874cafe99584c39a9fa1e91 100644 (file)
@@ -1 +1 @@
-49d23ef61f9ce2ffe13237b51a0e01b0b46ba96b
\ No newline at end of file
+640eb54ad6aac9bc7109cba167389a9bcec3f21e
\ No newline at end of file
index 3265b3196bfe551ac0c797c7f6ffbfe93f65cfb8..dd5f4d9bae97cf8be80e20da1c8b0951717b7ccc 100644 (file)
@@ -1587,7 +1587,9 @@ struct sqlite3_mem_methods {
 ** page cache implementation into that object.)^ </dd>
 **
 ** [[SQLITE_CONFIG_LOG]] <dt>SQLITE_CONFIG_LOG</dt>
-** <dd> ^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a
+** <dd> The SQLITE_CONFIG_LOG option is used to configure the SQLite
+** global [error log].
+** [^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a
 ** function with a call signature of void(*)(void*,int,const char*), 
 ** and a pointer to void. ^If the function pointer is not NULL, it is
 ** invoked by [sqlite3_log()] to process each logging event.  ^If the
@@ -2522,6 +2524,9 @@ int sqlite3_set_authorizer(
 ** as each triggered subprogram is entered.  The callbacks for triggers
 ** contain a UTF-8 SQL comment that identifies the trigger.)^
 **
+** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit
+** the length of [bound parameter] expansion in the output of sqlite3_trace().
+**
 ** ^The callback function registered by sqlite3_profile() is invoked
 ** as each SQL statement finishes.  ^The profile callback contains
 ** the original statement text and an estimate of wall-clock time
@@ -3060,7 +3065,8 @@ int sqlite3_limit(sqlite3*, int id, int newVal);
 ** <li>
 ** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
 ** always used to do, [sqlite3_step()] will automatically recompile the SQL
-** statement and try to run it again.
+** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY]
+** retries will occur before sqlite3_step() gives up and returns an error.
 ** </li>
 **
 ** <li>
@@ -6872,7 +6878,7 @@ int sqlite3_strglob(const char *zGlob, const char *zStr);
 /*
 ** CAPI3REF: Error Logging Interface
 **
-** ^The [sqlite3_log()] interface writes a message into the error log
+** ^The [sqlite3_log()] interface writes a message into the [error log]
 ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
 ** ^If logging is enabled, the zFormat string and subsequent arguments are
 ** used with [sqlite3_snprintf()] to generate the final output string.