Continuing documentation refinements. Comment changes only. (CVS 6284)
FossilOrigin-Name: 83e8308435be8c954fe7a347a64f28abcb81437b
This commit is contained in:
parent
3d781c2176
commit
46f33ef93c
14
manifest
14
manifest
@ -1,5 +1,5 @@
|
||||
C Fix\sthe\sbackup.test\sscript\sso\sthat\sit\sworks\sregardless\sof\sthe\svalue\sof\sSQLITE_TEMP_STORE\sand\sthe\sinitial\scontents\sof\sthe\sfile-system.\s(CVS\s6283)
|
||||
D 2009-02-11T15:11:00
|
||||
C Continuing\sdocumentation\srefinements.\s\sComment\schanges\sonly.\s(CVS\s6284)
|
||||
D 2009-02-11T15:23:35
|
||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||
F Makefile.in c7a5a30fb6852bd7839b1024e1661da8549878ee
|
||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||
@ -157,7 +157,7 @@ F src/resolve.c 18dc9f0df1d60048e012ce6632251063e0dd356a
|
||||
F src/rowset.c ba9375f37053d422dd76965a9c370a13b6e1aac4
|
||||
F src/select.c 164934bd8a9fae29e4d21530688dbac53b420da6
|
||||
F src/shell.c f109ebbb50132926ebbc173a6c2d8838d5d78527
|
||||
F src/sqlite.h.in f4392dc19920dd45077d3aafd3a14024cca85176
|
||||
F src/sqlite.h.in 82cfca85be9454f60a8be91e362ef3835dd895a2
|
||||
F src/sqlite3ext.h 1db7d63ab5de4b3e6b83dd03d1a4e64fef6d2a17
|
||||
F src/sqliteInt.h 55cc7e45a7fcc166be62b984168dd69159d877eb
|
||||
F src/sqliteLimit.h ffe93f5a0c4e7bd13e70cd7bf84cfb5c3465f45d
|
||||
@ -701,7 +701,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
|
||||
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||
P f0189ec8c9b5d1dfe1f5d93746cc7b5703a80de5
|
||||
R 1a4ed233023747675b1dbcfb693e3414
|
||||
U danielk1977
|
||||
Z 1bb50696aab59a113e32a5c0dd25c8e7
|
||||
P da660ea73ac6627b4e71706b8cd464646ea66550
|
||||
R b00bae72bd7f7bf1e88bfe2a8aaef124
|
||||
U drh
|
||||
Z 638d0f6fdf78137037759e9a65fc4eec
|
||||
|
@ -1 +1 @@
|
||||
da660ea73ac6627b4e71706b8cd464646ea66550
|
||||
83e8308435be8c954fe7a347a64f28abcb81437b
|
@ -30,7 +30,7 @@
|
||||
** the version number) and changes its name to "sqlite3.h" as
|
||||
** part of the build process.
|
||||
**
|
||||
** @(#) $Id: sqlite.h.in,v 1.430 2009/02/11 15:04:40 drh Exp $
|
||||
** @(#) $Id: sqlite.h.in,v 1.431 2009/02/11 15:23:35 drh Exp $
|
||||
*/
|
||||
#ifndef _SQLITE3_H_
|
||||
#define _SQLITE3_H_
|
||||
@ -2800,7 +2800,7 @@ typedef struct sqlite3_stmt sqlite3_stmt;
|
||||
** Run time limits are intended for use in applications that manage
|
||||
** both their own internal database and also databases that are controlled
|
||||
** by untrusted external sources. An example application might be a
|
||||
** webbrowser that has its own databases for storing history and
|
||||
** web browser that has its own databases for storing history and
|
||||
** separate databases controlled by JavaScript applications downloaded
|
||||
** off the Internet. The internal databases can be given the
|
||||
** large, default limits. Databases managed by external sources can
|
||||
@ -2832,9 +2832,10 @@ int sqlite3_limit(sqlite3*, int id, int newVal);
|
||||
** CAPI3REF: Run-Time Limit Categories {H12790} <H12760>
|
||||
** KEYWORDS: {limit category} {limit categories}
|
||||
**
|
||||
** These constants define various aspects of a [database connection]
|
||||
** that can be limited in size by calls to [sqlite3_limit()].
|
||||
** The meanings of the various limits are as follows:
|
||||
** These constants define various performance limits
|
||||
** that can be lowered at run-time using [sqlite3_limit()].
|
||||
** The synopsis of the meanings of the various limits is shown below.
|
||||
** Additional information is available at [limits | Limits in SQLite].
|
||||
**
|
||||
** <dl>
|
||||
** <dt>SQLITE_LIMIT_LENGTH</dt>
|
||||
@ -2845,7 +2846,7 @@ int sqlite3_limit(sqlite3*, int id, int newVal);
|
||||
**
|
||||
** <dt>SQLITE_LIMIT_COLUMN</dt>
|
||||
** <dd>The maximum number of columns in a table definition or in the
|
||||
** result set of a SELECT or the maximum number of columns in an index
|
||||
** result set of a [SELECT] or the maximum number of columns in an index
|
||||
** or in an ORDER BY or GROUP BY clause.</dd>
|
||||
**
|
||||
** <dt>SQLITE_LIMIT_EXPR_DEPTH</dt>
|
||||
@ -2862,11 +2863,11 @@ int sqlite3_limit(sqlite3*, int id, int newVal);
|
||||
** <dd>The maximum number of arguments on a function.</dd>
|
||||
**
|
||||
** <dt>SQLITE_LIMIT_ATTACHED</dt>
|
||||
** <dd>The maximum number of attached databases.</dd>
|
||||
** <dd>The maximum number of [ATTACH | attached databases].</dd>
|
||||
**
|
||||
** <dt>SQLITE_LIMIT_LIKE_PATTERN_LENGTH</dt>
|
||||
** <dd>The maximum length of the pattern argument to the LIKE or
|
||||
** GLOB operators.</dd>
|
||||
** <dd>The maximum length of the pattern argument to the [LIKE] or
|
||||
** [GLOB] operators.</dd>
|
||||
**
|
||||
** <dt>SQLITE_LIMIT_VARIABLE_NUMBER</dt>
|
||||
** <dd>The maximum number of variables in an SQL statement that can
|
||||
|
Loading…
Reference in New Issue
Block a user