Small. Fast. Reliable.
Choose any three.

SQLite Requirement Matrix Details
pragma.html

Index Summary Markup Original


R-43042-22504-56439-09446-23422-01554-61314-54021 tcl slt th3 src

No error messages are generated if an unknown pragma is issued.

th3/req1/pragma03.test:10

/* IMP: R-43042-22504 */
# EVIDENCE-OF: R-43042-22504 No error messages are generated if an
# unknown pragma is issued.

R-64781-29425-02417-13736-38225-42517-23683-29387 tcl slt th3 src

Some pragmas take effect during the SQL compilation stage, not the execution stage.

th3/req1/pragma06.test:12

/* IMP: R-64781-29425 */
# EVIDENCE-OF: R-64781-29425 Some pragmas take effect during the SQL
# compilation stage, not the execution stage.

R-42415-59396-18993-18875-54415-33588-07688-24488 tcl slt th3 src

Or the pragma might run during sqlite3_step() just like normal SQL statements.

th3/req1/pragma06.test:25

/* IMP: R-42415-59396 */
# EVIDENCE-OF: R-42415-59396 Or the pragma might run during
# sqlite3_step() just like normal SQL statements.

R-42902-18363-22212-11227-45326-06638-40975-55244 tcl slt th3 src

Canonical usage: syntax/pragma-stmt.html

th3/req1/pragma01.test:12

/* IMP: R-42902-18363 */
# EVIDENCE-OF: R-42902-18363 -- syntax diagram pragma-stmt

R-53502-54194-60342-62278-28818-25221-59498-19647 tcl slt th3 src

Canonical usage: syntax/pragma-value.html

th3/req1/pragma01.test:14

/* IMP: R-53502-54194 */
# EVIDENCE-OF: R-53502-54194 -- syntax diagram pragma-value

R-16446-38486-52659-45236-06548-25582-51186-33834 tcl slt th3 src

Canonical usage: syntax/signed-number.html

/* IMP: R-16446-38486 */
# EVIDENCE-OF: R-16446-38486 -- syntax diagram signed-number

R-64973-09381-20072-06844-08666-32916-49559-16306 tcl slt th3 src

A pragma can take either zero or one argument.

th3/req1/pragma01.test:16

/* IMP: R-64973-09381 */
# EVIDENCE-OF: R-64973-09381 A pragma can take either zero or one
# argument.

R-60831-05341-23362-01720-38236-12013-65294-04816 tcl slt th3 src

The argument is may be either in parentheses or it may be separated from the pragma name by an equal sign.

th3/req1/pragma01.test:19

/* IMP: R-60831-05341 */
# EVIDENCE-OF: R-60831-05341 The argument is may be either in
# parentheses or it may be separated from the pragma name by an equal
# sign.

R-04709-28430-14842-03600-36278-03324-37525-06420 tcl slt th3 src

The two syntaxes yield identical results.

th3/req1/pragma01.test:23

/* IMP: R-04709-28430 */
# EVIDENCE-OF: R-04709-28430 The two syntaxes yield identical results.

R-36822-49898-51267-28801-22242-39926-43860-26511 tcl slt th3 src

In many pragmas, the argument is a boolean. The boolean can be one of:

1 yes true on
0 no false off

th3/req1/pragma01.test:49

/* IMP: R-36822-49898 */
# EVIDENCE-OF: R-36822-49898 In many pragmas, the argument is a boolean.
# The boolean can be one of: 1 yes true on0 no false off

R-15737-42560-39966-60421-02348-13704-23907-48839 tcl slt th3 src

Keyword arguments can optionally appear in quotes.

th3/req1/pragma01.test:52

/* IMP: R-15737-42560 */
# EVIDENCE-OF: R-15737-42560 Keyword arguments can optionally appear in
# quotes.

R-63043-31985-03147-25743-35105-56824-27105-53861 tcl slt th3 src

A pragma may have an optional schema-name before the pragma name.

th3/req1/pragma01.test:89

/* IMP: R-63043-31985 */
# EVIDENCE-OF: R-63043-31985 A pragma may have an optional schema-name
# before the pragma name.

R-46762-41357-02891-26535-53181-26230-38926-40574 tcl slt th3 src

The schema-name is the name of an ATTACH-ed database or "main" or "temp" for the main and the TEMP databases.

th3/req1/pragma01.test:92

/* IMP: R-46762-41357 */
# EVIDENCE-OF: R-46762-41357 The schema-name is the name of an ATTACH-ed
# database or "main" or "temp" for the main and the TEMP databases.

R-45642-41863-02575-26055-57853-43447-11909-01929 tcl slt th3 src

If the optional schema name is omitted, "main" is assumed.

th3/req1/pragma01.test:95

/* IMP: R-45642-41863 */
# EVIDENCE-OF: R-45642-41863 If the optional schema name is omitted,
# "main" is assumed.

R-37137-45553-37587-45054-45881-44464-34262-16786 tcl slt th3 src

In some pragmas, the schema name is meaningless and is simply ignored.

th3/req1/pragma01.test:119

/* IMP: R-37137-45553 */
# EVIDENCE-OF: R-37137-45553 In some pragmas, the schema name is
# meaningless and is simply ignored.

R-13593-05152-64764-04192-23453-35097-07783-21770 tcl slt th3 src

The application_id PRAGMA is used to query or set the 32-bit unsigned big-endian "Application ID" integer located at offset 68 into the database header.

th3/cov1/pragma20.test:157

/* IMP: R-13593-05152 */
# EVIDENCE-OF: R-13593-05152 The application_id PRAGMA is used to query
# or set the 32-bit unsigned big-endian "Application ID" integer located
# at offset 68 into the database header.

R-50578-26484-60015-06758-51752-02916-33934-51751 tcl slt th3 src

The default setting for auto-vacuum is 0 or "none", unless the SQLITE_DEFAULT_AUTOVACUUM compile-time option is used.

th3/req1/pragma07.test:11

/* IMP: R-50578-26484 */
# EVIDENCE-OF: R-50578-26484 The default setting for auto-vacuum is 0 or
# "none", unless the SQLITE_DEFAULT_AUTOVACUUM compile-time option is
# used.

R-11896-08162-39829-09724-10165-05972-28450-60411 tcl slt th3 src

The "none" setting means that auto-vacuum is disabled.

th3/req1/pragma07.test:24

/* IMP: R-11896-08162 */
# EVIDENCE-OF: R-11896-08162 The "none" setting means that auto-vacuum
# is disabled.

R-12526-56546-27211-20254-24569-61288-04911-18504 tcl slt th3 src

When auto-vacuum is disabled and data is deleted data from a database, the database file remains the same size.

th3/req1/pragma07.test:27

/* IMP: R-12526-56546 */
# EVIDENCE-OF: R-12526-56546 When auto-vacuum is disabled and data is
# deleted data from a database, the database file remains the same size.

R-64629-22390-19344-37404-07828-61811-57666-02667 tcl slt th3 src

Unused database file pages are added to a "freelist" and reused for subsequent inserts.

th3/req1/pragma07.test:30

/* IMP: R-64629-22390 */
# EVIDENCE-OF: R-64629-22390 Unused database file pages are added to a
# "freelist" and reused for subsequent inserts.

R-43482-09713-62461-41415-00231-20987-55224-61145 tcl slt th3 src

In this mode the VACUUM command can be used to rebuild the entire database file and thus reclaim unused disk space.

th3/req1/pragma07.test:51

/* IMP: R-43482-09713 */
# EVIDENCE-OF: R-43482-09713 In this mode the VACUUM command can be used
# to rebuild the entire database file and thus reclaim unused disk
# space.

R-18500-08619-10931-07451-20568-56201-09385-55546 tcl slt th3 src

When the auto-vacuum mode is 1 or "full", the freelist pages are moved to the end of the database file and the database file is truncated to remove the freelist pages at every transaction commit.

th3/req1/pragma07.test:66

/* IMP: R-18500-08619 */
# EVIDENCE-OF: R-18500-08619 When the auto-vacuum mode is 1 or "full",
# the freelist pages are moved to the end of the database file and the
# database file is truncated to remove the freelist pages at every
# transaction commit.

R-57803-30267-35390-49714-00774-40493-44920-28706 tcl slt th3 src

Note, however, that auto-vacuum only truncates the freelist pages from the file. Auto-vacuum does not defragment the database nor repack individual database pages the way that the VACUUM command does.

th3/req1/pragma07.test:88

/* IMP: R-57803-30267 */
# EVIDENCE-OF: R-57803-30267 Note, however, that auto-vacuum only
# truncates the freelist pages from the file. Auto-vacuum does not
# defragment the database nor repack individual database pages the way
# that the VACUUM command does.

R-40212-32858-03884-52961-15925-53384-61113-63305 tcl slt th3 src

Therefore, auto-vacuuming must be turned on before any tables are created.

th3/req1/pragma07.test:118

/* IMP: R-40212-32858 */
# EVIDENCE-OF: R-40212-32858 Therefore, auto-vacuuming must be turned on
# before any tables are created.

R-24519-28304-27679-62184-02249-08056-49023-13978 tcl slt th3 src

When the value of auto-vacuum is 2 or "incremental" then the additional information needed to do auto-vacuuming is stored in the database file but auto-vacuuming does not occur automatically at each commit as it does with auto_vacuum=full.

th3/req1/pragma07.test:131

/* IMP: R-24519-28304 */
# EVIDENCE-OF: R-24519-28304 When the value of auto-vacuum is 2 or
# "incremental" then the additional information needed to do
# auto-vacuuming is stored in the database file but auto-vacuuming does
# not occur automatically at each commit as it does with
# auto_vacuum=full.

R-15909-61171-23810-45611-13574-21954-09176-43834 tcl slt th3 src

In incremental mode, the separate incremental_vacuum pragma must be invoked to cause the auto-vacuum to occur.

th3/req1/pragma07.test:137

/* IMP: R-15909-61171 */
# EVIDENCE-OF: R-15909-61171 In incremental mode, the separate
# incremental_vacuum pragma must be invoked to cause the auto-vacuum to
# occur.

R-25616-61116-19772-20982-08386-58484-18398-18419 tcl slt th3 src

The database connection can be changed between full and incremental autovacuum mode at any time.

th3/req1/pragma07.test:159

/* IMP: R-25616-61116 */
# EVIDENCE-OF: R-25616-61116 The database connection can be changed
# between full and incremental autovacuum mode at any time.

R-03934-63400-35021-15759-28695-34964-02248-59433 tcl slt th3 src

However, changing from "none" to "full" or "incremental" can only occur when the database is new (no tables have yet been created) or by running the VACUUM command.

th3/req1/pragma07.test:179

/* IMP: R-03934-63400 */
# EVIDENCE-OF: R-03934-63400 However, changing from "none" to "full" or
# "incremental" can only occur when the database is new (no tables have
# yet been created) or by running the VACUUM command.

R-03040-34580-06414-61878-61161-08528-60209-55771 tcl slt th3 src

To change auto-vacuum modes, first use the auto_vacuum pragma to set the new desired mode, then invoke the VACUUM command to reorganize the entire database file.

th3/req1/pragma07.test:183

/* IMP: R-03040-34580 */
# EVIDENCE-OF: R-03040-34580 To change auto-vacuum modes, first use the
# auto_vacuum pragma to set the new desired mode, then invoke the VACUUM
# command to reorganize the entire database file.

R-62740-39384-05078-12157-18759-37018-24032-16854 tcl slt th3 src

To change from "full" or "incremental" back to "none" always requires running VACUUM even on an empty database.

th3/req1/pragma07.test:216

/* IMP: R-62740-39384 */
# EVIDENCE-OF: R-62740-39384 To change from "full" or "incremental" back
# to "none" always requires running VACUUM even on an empty database.

R-48932-13175-31748-44734-45646-26291-63323-36256 tcl slt th3 src

When the auto_vacuum pragma is invoked with no arguments, it returns the current auto_vacuum mode.

th3/req1/pragma07.test:219

/* IMP: R-48932-13175 */
# EVIDENCE-OF: R-48932-13175 When the auto_vacuum pragma is invoked with
# no arguments, it returns the current auto_vacuum mode.

R-34271-33106-55360-31605-05941-37144-32278-15012 tcl slt th3 src

PRAGMA automatic_index;
PRAGMA automatic_index =
boolean;

Query, set, or clear the automatic indexing capability.

tcl/autoindex1.test:14   th3/req1/pragma08.test:9

/* IMP: R-34271-33106 */
# EVIDENCE-OF: R-34271-33106 PRAGMA automatic_index; PRAGMA
# automatic_index = boolean; Query, set, or clear the automatic indexing
# capability.

R-23579-05241-28343-33967-00321-51471-16387-08197 tcl slt th3 src

PRAGMA busy_timeout;
PRAGMA busy_timeout =
milliseconds;

Query or change the setting of the busy timeout.

tcl/lock.test:244   th3/cov1/main21.test:76

/* IMP: R-23579-05241 */
# EVIDENCE-OF: R-23579-05241 PRAGMA busy_timeout; PRAGMA busy_timeout =
# milliseconds; Query or change the setting of the busy timeout.

R-13861-56665-11866-23865-35263-00368-63176-40609 tcl slt th3 src

PRAGMA schema.cache_size;
PRAGMA
schema.cache_size = pages;
PRAGMA
schema.cache_size = -kibibytes;

Query or change the suggested maximum number of database disk pages that SQLite will hold in memory at once per open database file.

tcl/pragma.test:86   th3/req1/pragma09.test:9

/* IMP: R-13861-56665 */
# EVIDENCE-OF: R-13861-56665 PRAGMA schema.cache_size; PRAGMA
# schema.cache_size = pages; PRAGMA schema.cache_size = -kibibytes;
# Query or change the suggested maximum number of database disk pages
# that SQLite will hold in memory at once per open database file.

R-30185-15359-41231-64088-51727-20362-49126-10873 tcl slt th3 src

The default suggested cache size is -2000, which means the cache size is limited to 2048000 bytes of memory.

src/sqliteLimit.h:104   th3/req1/pragma09.test:14

/* IMP: R-30185-15359 */
# EVIDENCE-OF: R-30185-15359 The default suggested cache size is -2000,
# which means the cache size is limited to 2048000 bytes of memory.

R-48205-43578-08481-37323-43342-53439-37471-23722 tcl slt th3 src

The default suggested cache size can be altered using the SQLITE_DEFAULT_CACHE_SIZE compile-time options.

src/sqliteLimit.h:106

/* IMP: R-48205-43578 */
# EVIDENCE-OF: R-48205-43578 The default suggested cache size can be
# altered using the SQLITE_DEFAULT_CACHE_SIZE compile-time options.

R-27461-16942-46149-61363-05307-36708-49016-10103 tcl slt th3 src

The TEMP database has a default suggested cache size of 0 pages.

th3/req1/pragma09.test:41

/* IMP: R-27461-16942 */
# EVIDENCE-OF: R-27461-16942 The TEMP database has a default suggested
# cache size of 0 pages.

R-42059-47211-64082-08084-07412-31027-38938-26624 tcl slt th3 src

If the argument N is positive then the suggested cache size is set to N.

src/pcache.c:245   tcl/pragma.test:102

/* IMP: R-42059-47211 */
# EVIDENCE-OF: R-42059-47211 If the argument N is positive then the
# suggested cache size is set to N.

R-61436-13639-25666-64094-55239-63519-07702-63359 tcl slt th3 src

If the argument N is negative, then the number of cache pages is adjusted to use approximately abs(N*1024) bytes of memory.

src/pcache.c:249

/* IMP: R-61436-13639 */
# EVIDENCE-OF: R-61436-13639 If the argument N is negative, then the
# number of cache pages is adjusted to use approximately abs(N*1024)
# bytes of memory.

R-41134-27890-19387-23998-27179-40954-57167-14106 tcl slt th3 src

When you change the cache size using the cache_size pragma, the change only endures for the current session.

th3/req1/pragma09.test:50

/* IMP: R-41134-27890 */
# EVIDENCE-OF: R-41134-27890 When you change the cache size using the
# cache_size pragma, the change only endures for the current session.

R-48331-62427-58525-15123-43794-40933-40016-08024 tcl slt th3 src

The cache size reverts to the default value when the database is closed and reopened.

th3/req1/pragma09.test:53

/* IMP: R-48331-62427 */
# EVIDENCE-OF: R-48331-62427 The cache size reverts to the default value
# when the database is closed and reopened.

R-63549-59887-30432-35575-09108-37055-29466-09817 tcl slt th3 src

PRAGMA cache_spill;
PRAGMA cache_spill=
boolean;
PRAGMA
schema.cache_spill=N;

tcl/pragma2.test:128

/* IMP: R-63549-59887 */
# EVIDENCE-OF: R-63549-59887 PRAGMA cache_spill; PRAGMA
# cache_spill=boolean; PRAGMA schema.cache_spill=N;

R-07634-40532-31370-54179-45276-35620-20661-11259 tcl slt th3 src

The cache_spill pragma enables or disables the ability of the pager to spill dirty cache pages to the database file in the middle of a transaction.

tcl/pragma2.test:172

/* IMP: R-07634-40532 */
# EVIDENCE-OF: R-07634-40532 The cache_spill pragma enables or disables
# the ability of the pager to spill dirty cache pages to the database
# file in the middle of a transaction.

R-23955-02765-61832-08091-33535-52671-43903-30817 tcl slt th3 src

Cache_spill is enabled by default

tcl/pragma2.test:131

/* IMP: R-23955-02765 */
# EVIDENCE-OF: R-23955-02765 Cache_spill is enabled by default

R-34657-61226-12617-43692-19153-03581-17665-29840 tcl slt th3 src

The "PRAGMA cache_spill=N" form of this pragma sets a minimum cache size threshold required for spilling to occur.

tcl/pragma2.test:195

/* IMP: R-34657-61226 */
# EVIDENCE-OF: R-34657-61226 The "PRAGMA cache_spill=N" form of this
# pragma sets a minimum cache size threshold required for spilling to
# occur.

R-30164-60316-40156-60446-50221-53227-39726-53106 tcl slt th3 src

The number of pages in cache must exceed both the cache_spill threshold and the maximum cache size set by the PRAGMA cache_size statement in order for spilling to occur.

/* IMP: R-30164-60316 */
# EVIDENCE-OF: R-30164-60316 The number of pages in cache must exceed
# both the cache_spill threshold and the maximum cache size set by the
# PRAGMA cache_size statement in order for spilling to occur.

R-23786-28684-07406-43966-34623-43310-02646-59578 tcl slt th3 src

The "PRAGMA cache_spill=boolean" form of this pragma applies across all databases attached to the database connection.

/* IMP: R-23786-28684 */
# EVIDENCE-OF: R-23786-28684 The "PRAGMA cache_spill=boolean" form of
# this pragma applies across all databases attached to the database
# connection.

R-22872-18005-62981-26187-32897-04943-19086-58374 tcl slt th3 src

But the "PRAGMA cache_spill=N" form of this statement only applies to the "main" schema or whatever other schema is specified as part of the statement.

/* IMP: R-22872-18005 */
# EVIDENCE-OF: R-22872-18005 But the "PRAGMA cache_spill=N" form of this
# statement only applies to the "main" schema or whatever other schema
# is specified as part of the statement.

R-57216-60803-31079-31964-02291-43639-29753-51457 tcl slt th3 src

The default behavior of the LIKE operator is to ignore case for ASCII characters. Hence, by default 'a' LIKE 'A' is true.

th3/req1/pragma10.test:34

/* IMP: R-57216-60803 */
# EVIDENCE-OF: R-57216-60803 The default behavior of the LIKE operator
# is to ignore case for ASCII characters. Hence, by default 'a' LIKE 'A'
# is true.

R-34730-53445-15838-11944-46041-12438-53750-14468 tcl slt th3 src

The case_sensitive_like pragma installs a new application-defined LIKE function that is either case sensitive or insensitive depending on the value of the case_sensitive_like pragma.

th3/req1/pragma10.test:66

/* IMP: R-34730-53445 */
# EVIDENCE-OF: R-34730-53445 The case_sensitive_like pragma installs a
# new application-defined LIKE function that is either case sensitive or
# insensitive depending on the value of the case_sensitive_like pragma.

R-06710-22511-57136-17945-50070-33110-36192-14395 tcl slt th3 src

When case_sensitive_like is disabled, the default LIKE behavior is expressed.

th3/req1/pragma10.test:70

/* IMP: R-06710-22511 */
# EVIDENCE-OF: R-06710-22511 When case_sensitive_like is disabled, the
# default LIKE behavior is expressed.

R-23019-08375-23742-45203-57540-44774-03255-16704 tcl slt th3 src

When case_sensitive_like is enabled, case becomes significant. So, for example, 'a' LIKE 'A' is false but 'a' LIKE 'a' is still true.

th3/req1/pragma10.test:73

/* IMP: R-23019-08375 */
# EVIDENCE-OF: R-23019-08375 When case_sensitive_like is enabled, case
# becomes significant. So, for example, 'a' LIKE 'A' is false but 'a'
# LIKE 'a' is still true.

R-54349-27488-43340-32008-63380-57974-11339-53896 tcl slt th3 src

This pragma uses sqlite3_create_function() to overload the LIKE and GLOB functions, which may override previous implementations of LIKE and GLOB registered by the application.

th3/req1/pragma10.test:135

/* IMP: R-54349-27488 */
# EVIDENCE-OF: R-54349-27488 This pragma uses sqlite3_create_function()
# to overload the LIKE and GLOB functions, which may override previous
# implementations of LIKE and GLOB registered by the application.

R-02597-60207-27800-53923-18122-14559-36270-03523 tcl slt th3 src

This pragma only changes the behavior of the SQL LIKE operator. It does not change the behavior of the sqlite3_strlike() C-language interface, which is always case insensitive.

/* IMP: R-02597-60207 */
# EVIDENCE-OF: R-02597-60207 This pragma only changes the behavior of
# the SQL LIKE operator. It does not change the behavior of the
# sqlite3_strlike() C-language interface, which is always case
# insensitive.

R-47085-17460-48136-50298-50839-31630-41230-33764 tcl slt th3 src

PRAGMA cell_size_check
PRAGMA cell_size_check =
boolean;

The cell_size_check pragma enables or disables additional sanity checking on database b-tree pages as they are initially read from disk.

/* IMP: R-47085-17460 */
# EVIDENCE-OF: R-47085-17460 PRAGMA cell_size_check PRAGMA
# cell_size_check = boolean; The cell_size_check pragma enables or
# disables additional sanity checking on database b-tree pages as they
# are initially read from disk.

R-59941-62933-38106-18791-02770-37169-39632-35636 tcl slt th3 src

PRAGMA checkpoint_fullfsync
PRAGMA checkpoint_fullfsync =
boolean;

Query or change the fullfsync flag for checkpoint operations.

th3/req1/pragma11.test:21

/* IMP: R-59941-62933 */
# EVIDENCE-OF: R-59941-62933 PRAGMA checkpoint_fullfsync PRAGMA
# checkpoint_fullfsync = boolean; Query or change the fullfsync flag for
# checkpoint operations.

R-14970-42377-34844-46496-15895-42662-06341-12505 tcl slt th3 src

If this flag is set, then the F_FULLFSYNC syncing method is used during checkpoint operations on systems that support F_FULLFSYNC.

th3/req1/pragma11.test:41

/* IMP: R-14970-42377 */
# EVIDENCE-OF: R-14970-42377 If this flag is set, then the F_FULLFSYNC
# syncing method is used during checkpoint operations on systems that
# support F_FULLFSYNC.

R-58560-23968-28537-53654-45621-13227-05416-28279 tcl slt th3 src

The default value of the checkpoint_fullfsync flag is off.

th3/req1/pragma11.test:25

/* IMP: R-58560-23968 */
# EVIDENCE-OF: R-58560-23968 The default value of the
# checkpoint_fullfsync flag is off.

R-48930-58522-23866-61724-42615-58170-25168-58351 tcl slt th3 src

If the fullfsync flag is set, then the F_FULLFSYNC syncing method is used for all sync operations and the checkpoint_fullfsync setting is irrelevant.

th3/req1/pragma11.test:72

/* IMP: R-48930-58522 */
# EVIDENCE-OF: R-48930-58522 If the fullfsync flag is set, then the
# F_FULLFSYNC syncing method is used for all sync operations and the
# checkpoint_fullfsync setting is irrelevant.

R-08469-46782-59132-04592-41153-65090-64039-23228 tcl slt th3 src

PRAGMA collation_list;

Return a list of the collating sequences defined for the current database connection.

th3/req1/pragma13.test:12

/* IMP: R-08469-46782 */
# EVIDENCE-OF: R-08469-46782 PRAGMA collation_list; Return a list of the
# collating sequences defined for the current database connection.

R-40541-16535-13486-20808-32771-40014-56894-53399 tcl slt th3 src

This pragma returns the names of compile-time options used when building SQLite, one option per row.

th3/req1/pragma13.test:34

/* IMP: R-40541-16535 */
# EVIDENCE-OF: R-40541-16535 This pragma returns the names of
# compile-time options used when building SQLite, one option per row.

R-58101-01610-39291-65519-22714-56029-10662-40806 tcl slt th3 src

The "SQLITE_" prefix is omitted from the returned option names.

th3/req1/pragma13.test:37

/* IMP: R-58101-01610 */
# EVIDENCE-OF: R-58101-01610 The "SQLITE_" prefix is omitted from the
# returned option names.

R-27726-60934-44670-59608-21152-24326-11375-20798 tcl slt th3 src

The "PRAGMA data_version" command provides an indication that the database file has been modified.

tcl/pragma3.test:33   th3/cov1/pragma26.test:30

/* IMP: R-27726-60934 */
# EVIDENCE-OF: R-27726-60934 The "PRAGMA data_version" command provides
# an indication that the database file has been modified.

R-63005-41812-25626-08915-56924-18701-34240-17116 tcl slt th3 src

The integer values returned by two invocations of "PRAGMA data_version" from the same connection will be different if changes were committed to the database by any other connection in the interim.

tcl/pragma3.test:71   th3/cov1/pragma26.test:25

/* IMP: R-63005-41812 */
# EVIDENCE-OF: R-63005-41812 The integer values returned by two
# invocations of "PRAGMA data_version" from the same connection will be
# different if changes were committed to the database by any other
# connection in the interim.

R-47505-58569-20472-23148-40328-48365-60870-06508 tcl slt th3 src

The "PRAGMA data_version" value is unchanged for commits made on the same database connection.

tcl/pragma3.test:36   th3/cov1/pragma26.test:9

/* IMP: R-47505-58569 */
# EVIDENCE-OF: R-47505-58569 The "PRAGMA data_version" value is
# unchanged for commits made on the same database connection.

R-54562-06892-25259-07703-54157-59355-38292-12890 tcl slt th3 src

The behavior of "PRAGMA data_version" is the same for all database connections, including database connections in separate processes and shared cache database connections.

tcl/pragma3.test:133   tcl/pragma3.test:161

/* IMP: R-54562-06892 */
# EVIDENCE-OF: R-54562-06892 The behavior of "PRAGMA data_version" is
# the same for all database connections, including database connections
# in separate processes and shared cache database connections.

R-19326-44825-19062-24470-23880-46223-50935-31383 tcl slt th3 src

The "PRAGMA data_version" value is a local property of each database connection and so values returned by two concurrent invocations of "PRAGMA data_version" on separate database connections are often different even though the underlying database is identical.

tcl/pragma3.test:123   th3/cov1/pragma26.test:95

/* IMP: R-19326-44825 */
# EVIDENCE-OF: R-19326-44825 The "PRAGMA data_version" value is a local
# property of each database connection and so values returned by two
# concurrent invocations of "PRAGMA data_version" on separate database
# connections are often different even though the underlying database is
# identical.

R-57464-30285-51678-51682-55772-21804-29928-17163 tcl slt th3 src

PRAGMA database_list;

This pragma works like a query to return one row for each database attached to the current database connection.

th3/req1/pragma14.test:12

/* IMP: R-57464-30285 */
# EVIDENCE-OF: R-57464-30285 PRAGMA database_list; This pragma works
# like a query to return one row for each database attached to the
# current database connection.

R-05256-02411-03120-41159-49408-38531-58118-03521 tcl slt th3 src

The second column is the "main" for the main database file, "temp" for the database file used to store TEMP objects, or the name of the ATTACHed database for other database files.

th3/req1/pragma14.test:16

/* IMP: R-05256-02411 */
# EVIDENCE-OF: R-05256-02411 The second column is the "main" for the
# main database file, "temp" for the database file used to store TEMP
# objects, or the name of the ATTACHed database for other database
# files.

R-61005-38009-10424-51044-09118-00847-38862-56166 tcl slt th3 src

The third column is the name of the database file itself, or an empty string if the database is not associated with a file.

th3/req1/pragma14.test:21

/* IMP: R-61005-38009 */
# EVIDENCE-OF: R-61005-38009 The third column is the name of the
# database file itself, or an empty string if the database is not
# associated with a file.

R-00373-55350-22476-46693-17788-34313-52165-34922 tcl slt th3 src

PRAGMA schema.default_cache_size;
PRAGMA
schema.default_cache_size = Number-of-pages;

This pragma queries or sets the suggested maximum number of pages of disk cache that will be allocated per open database file.

th3/req1/pragma09.test:64

/* IMP: R-00373-55350 */
# EVIDENCE-OF: R-00373-55350 PRAGMA schema.default_cache_size; PRAGMA
# schema.default_cache_size = Number-of-pages; This pragma queries or
# sets the suggested maximum number of pages of disk cache that will be
# allocated per open database file.

R-52058-53560-05683-08265-32399-18917-51840-34472 tcl slt th3 src

The difference between this pragma and cache_size is that the value set here persists across database connections.

th3/req1/pragma09.test:88

/* IMP: R-52058-53560 */
# EVIDENCE-OF: R-52058-53560 The difference between this pragma and
# cache_size is that the value set here persists across database
# connections.

R-61141-39803-04912-41496-05961-04473-04345-36188 tcl slt th3 src

The value of the default cache size is stored in the 4-byte big-endian integer located at offset 48 in the header of the database file.

th3/req1/pragma09.test:97

/* IMP: R-61141-39803 */
# EVIDENCE-OF: R-61141-39803 The value of the default cache size is
# stored in the 4-byte big-endian integer located at offset 48 in the
# header of the database file.

R-18981-16292-44177-39464-49712-02547-36593-34843 tcl slt th3 src

When the defer_foreign_keys PRAGMA is on, enforcement of all foreign key constraints is delayed until the outermost transaction is committed.

tcl/fkey6.test:16   th3/cov1/fkey24.test:103

/* IMP: R-18981-16292 */
# EVIDENCE-OF: R-18981-16292 When the defer_foreign_keys PRAGMA is on,
# enforcement of all foreign key constraints is delayed until the
# outermost transaction is committed.

R-28911-57501-45271-30589-18471-43910-24083-24523 tcl slt th3 src

The defer_foreign_keys pragma defaults to OFF so that foreign key constraints are only deferred if they are created as "DEFERRABLE INITIALLY DEFERRED".

tcl/fkey6.test:20   th3/cov1/fkey24.test:46

/* IMP: R-28911-57501 */
# EVIDENCE-OF: R-28911-57501 The defer_foreign_keys pragma defaults to
# OFF so that foreign key constraints are only deferred if they are
# created as "DEFERRABLE INITIALLY DEFERRED".

R-21752-26913-20480-58251-45591-43193-62846-17726 tcl slt th3 src

The defer_foreign_keys pragma is automatically switched off at each COMMIT or ROLLBACK. Hence, the defer_foreign_keys pragma must be separately enabled for each transaction.

tcl/fkey6.test:86   th3/cov1/fkey24.test:127   th3/cov1/fkey24.test:60

/* IMP: R-21752-26913 */
# EVIDENCE-OF: R-21752-26913 The defer_foreign_keys pragma is
# automatically switched off at each COMMIT or ROLLBACK. Hence, the
# defer_foreign_keys pragma must be separately enabled for each
# transaction.

R-49101-35304-43944-04630-00737-13180-26009-06638 tcl slt th3 src

PRAGMA encoding;
PRAGMA encoding = "UTF-8";
PRAGMA encoding = "UTF-16";
PRAGMA encoding = "UTF-16le";
PRAGMA encoding = "UTF-16be";

th3/req1/pragma16.test:9

/* IMP: R-49101-35304 */
# EVIDENCE-OF: R-49101-35304 PRAGMA encoding; PRAGMA encoding = "UTF-8";
# PRAGMA encoding = "UTF-16"; PRAGMA encoding = "UTF-16le"; PRAGMA
# encoding = "UTF-16be";

R-35620-55265-30366-61678-07542-39367-03113-47688 tcl slt th3 src

In first form, if the main database has already been created, then this pragma returns the text encoding used by the main database, one of "UTF-8", "UTF-16le" (little-endian UTF-16 encoding) or "UTF-16be" (big-endian UTF-16 encoding).

th3/req1/pragma16.test:15

/* IMP: R-35620-55265 */
# EVIDENCE-OF: R-35620-55265 In first form, if the main database has
# already been created, then this pragma returns the text encoding used
# by the main database, one of "UTF-8", "UTF-16le" (little-endian UTF-16
# encoding) or "UTF-16be" (big-endian UTF-16 encoding).

R-47754-42489-63490-59015-30535-62379-17829-51875 tcl slt th3 src

If the main database has not already been created, then the value returned is the text encoding that will be used to create the main database, if it is created by this session.

th3/req1/pragma16.test:22

/* IMP: R-47754-42489 */
# EVIDENCE-OF: R-47754-42489 If the main database has not already been
# created, then the value returned is the text encoding that will be
# used to create the main database, if it is created by this session.

R-44382-28097-05870-38154-27344-49810-07099-20883 tcl slt th3 src

The second through fifth forms of this pragma set the encoding that the main database will be created with if it is created by this session.

th3/req1/pragma16.test:28

/* IMP: R-44382-28097 */
# EVIDENCE-OF: R-44382-28097 The second through fifth forms of this
# pragma set the encoding that the main database will be created with if
# it is created by this session.

R-23331-02158-03352-54918-44519-63240-29041-31988 tcl slt th3 src

The string "UTF-16" is interpreted as "UTF-16 encoding using native machine byte-ordering".

th3/req1/pragma16.test:125

/* IMP: R-23331-02158 */
# EVIDENCE-OF: R-23331-02158 The string "UTF-16" is interpreted as
# "UTF-16 encoding using native machine byte-ordering".

R-39746-16618-18331-39876-26719-11435-38479-45574 tcl slt th3 src

It is not possible to change the text encoding of a database after it has been created and any attempt to do so will be silently ignored.

th3/req1/pragma16.test:92

/* IMP: R-39746-16618 */
# EVIDENCE-OF: R-39746-16618 It is not possible to change the text
# encoding of a database after it has been created and any attempt to do
# so will be silently ignored.

R-37812-47407-44151-24694-62524-58711-37886-57014 tcl slt th3 src

Once an encoding has been set for a database, it cannot be changed.

th3/req1/pragma16.test:96

/* IMP: R-37812-47407 */
# EVIDENCE-OF: R-37812-47407 Once an encoding has been set for a
# database, it cannot be changed.

R-46702-22190-08999-08775-06967-16190-65475-37101 tcl slt th3 src

Databases created by the ATTACH command always use the same encoding as the main database.

th3/req1/pragma16.test:161

/* IMP: R-46702-22190 */
# EVIDENCE-OF: R-46702-22190 Databases created by the ATTACH command
# always use the same encoding as the main database.

R-09943-43999-40050-60099-27352-31262-44628-15476 tcl slt th3 src

An attempt to ATTACH a database with a different text encoding from the "main" database will fail.

th3/req1/pragma16.test:206

/* IMP: R-09943-43999 */
# EVIDENCE-OF: R-09943-43999 An attempt to ATTACH a database with a
# different text encoding from the "main" database will fail.

R-15402-03103-21390-36962-23389-49198-06887-52060 tcl slt th3 src

PRAGMA schema.foreign_key_check;
PRAGMA
schema.foreign_key_check(table-name);

tcl/fkey5.test:15   th3/cov1/fkey23.test:10

/* IMP: R-15402-03103 */
# EVIDENCE-OF: R-15402-03103 PRAGMA schema.foreign_key_check; PRAGMA
# schema.foreign_key_check(table-name);

R-23918-17301-20351-08154-14070-22495-33406-46123 tcl slt th3 src

The foreign_key_check pragma checks the database, or the table called "table-name", for foreign key constraints that are violated and returns one row of output for each violation.

tcl/fkey5.test:18   th3/cov1/fkey23.test:13

/* IMP: R-23918-17301 */
# EVIDENCE-OF: R-23918-17301 The foreign_key_check pragma checks the
# database, or the table called "table-name", for foreign key
# constraints that are violated and returns one row of output for each
# violation.

R-45728-08709-00373-57456-04392-57683-10379-45526 tcl slt th3 src

There are four columns in each result row.

tcl/fkey5.test:113   th3/cov1/fkey23.test:54

/* IMP: R-45728-08709 */
# EVIDENCE-OF: R-45728-08709 There are four columns in each result row.

R-55672-01620-31109-43050-24330-12239-06929-55084 tcl slt th3 src

The first column is the name of the table that contains the REFERENCES clause.

tcl/fkey5.test:115   th3/cov1/fkey23.test:56

/* IMP: R-55672-01620 */
# EVIDENCE-OF: R-55672-01620 The first column is the name of the table
# that contains the REFERENCES clause.

R-25219-25618-61597-36745-37744-00617-56783-53239 tcl slt th3 src

The second column is the rowid of the row that contains the invalid REFERENCES clause.

tcl/fkey5.test:118   th3/cov1/fkey23.test:59

/* IMP: R-25219-25618 */
# EVIDENCE-OF: R-25219-25618 The second column is the rowid of the row
# that contains the invalid REFERENCES clause.

R-40482-20265-47732-31040-18704-35090-36000-12311 tcl slt th3 src

The third column is the name of the table that is referred to.

tcl/fkey5.test:121   th3/cov1/fkey23.test:62

/* IMP: R-40482-20265 */
# EVIDENCE-OF: R-40482-20265 The third column is the name of the table
# that is referred to.

R-62839-07969-20835-12393-10949-34728-00422-57830 tcl slt th3 src

The fourth column is the index of the specific foreign key constraint that failed.

tcl/fkey5.test:124   th3/cov1/fkey23.test:65

/* IMP: R-62839-07969 */
# EVIDENCE-OF: R-62839-07969 The fourth column is the index of the
# specific foreign key constraint that failed.

R-31235-42643-53508-27982-17967-09319-44968-07098 tcl slt th3 src

The fourth column in the output of the foreign_key_check pragma is the same integer as the first column in the output of the foreign_key_list pragma.

th3/cov1/fkey23.test:50

/* IMP: R-31235-42643 */
# EVIDENCE-OF: R-31235-42643 The fourth column in the output of the
# foreign_key_check pragma is the same integer as the first column in
# the output of the foreign_key_list pragma.

R-29523-01234-45433-34913-07391-02140-19209-23434 tcl slt th3 src

When a "table-name" is specified, the only foreign key constraints checked are those created by REFERENCES clauses in the CREATE TABLE statement for table-name.

th3/cov1/fkey23.test:99

/* IMP: R-29523-01234 */
# EVIDENCE-OF: R-29523-01234 When a "table-name" is specified, the only
# foreign key constraints checked are those created by REFERENCES
# clauses in the CREATE TABLE statement for table-name.

R-12507-28763-48132-30913-24133-27495-38799-45736 tcl slt th3 src

PRAGMA foreign_key_list(table-name);

This pragma returns one row for each foreign key constraint created by a REFERENCES clause in the CREATE TABLE statement of table "table-name".

th3/req1/pragma17.test:9

/* IMP: R-12507-28763 */
# EVIDENCE-OF: R-12507-28763 PRAGMA foreign_key_list(table-name); This
# pragma returns one row for each foreign key constraint created by a
# REFERENCES clause in the CREATE TABLE statement of table "table-name".

R-18160-43138-45730-29033-18368-13452-34551-31953 tcl slt th3 src

PRAGMA foreign_keys;
PRAGMA foreign_keys =
boolean;

Query, set, or clear the enforcement of foreign key constraints.

th3/req1/pragma18.test:17

/* IMP: R-18160-43138 */
# EVIDENCE-OF: R-18160-43138 PRAGMA foreign_keys; PRAGMA foreign_keys =
# boolean; Query, set, or clear the enforcement of foreign key
# constraints.

R-53547-37067-09638-20252-03189-64013-38251-09094 tcl slt th3 src

This pragma is a no-op within a transaction; foreign key constraint enforcement may only be enabled or disabled when there is no pending BEGIN or SAVEPOINT.

th3/req1/pragma18.test:30

/* IMP: R-53547-37067 */
# EVIDENCE-OF: R-53547-37067 This pragma is a no-op within a
# transaction; foreign key constraint enforcement may only be enabled or
# disabled when there is no pending BEGIN or SAVEPOINT.

R-54105-45069-36894-51687-59300-29186-60662-50296 tcl slt th3 src

Changing the foreign_keys setting affects the execution of all statements prepared using the database connection, including those prepared before the setting was changed.

th3/req1/pragma18.test:58

/* IMP: R-54105-45069 */
# EVIDENCE-OF: R-54105-45069 Changing the foreign_keys setting affects
# the execution of all statements prepared using the database
# connection, including those prepared before the setting was changed.

R-64276-00534-35608-51878-49907-08473-11116-64004 tcl slt th3 src

Any existing statements prepared using the legacy sqlite3_prepare() interface may fail with an SQLITE_SCHEMA error after the foreign_keys setting is changed.

th3/req1/pragma19.test:37

/* IMP: R-64276-00534 */
# EVIDENCE-OF: R-64276-00534 Any existing statements prepared using the
# legacy sqlite3_prepare() interface may fail with an SQLITE_SCHEMA
# error after the foreign_keys setting is changed.

R-09033-01493-08484-25490-18731-61378-37357-02599 tcl slt th3 src

As of SQLite version 3.6.19, the default setting for foreign key enforcement is OFF.

th3/req1/pragma18.test:10   th3/req1/pragma19.test:14

/* IMP: R-09033-01493 */
# EVIDENCE-OF: R-09033-01493 As of SQLite version 3.6.19, the default
# setting for foreign key enforcement is OFF.

R-11211-21323-44589-16843-54908-31937-00970-23693 tcl slt th3 src

PRAGMA schema.freelist_count;

Return the number of unused pages in the database file.

tcl/pragma2.test:45   th3/req1/pragma21.test:24

/* IMP: R-11211-21323 */
# EVIDENCE-OF: R-11211-21323 PRAGMA schema.freelist_count; Return the
# number of unused pages in the database file.

R-29353-26294-62114-45133-33417-28665-47147-29185 tcl slt th3 src

PRAGMA fullfsync
PRAGMA fullfsync =
boolean;

Query or change the fullfsync flag.

th3/req1/pragma11b.test:21

/* IMP: R-29353-26294 */
# EVIDENCE-OF: R-29353-26294 PRAGMA fullfsync PRAGMA fullfsync =
# boolean; Query or change the fullfsync flag.

R-09748-03241-62835-60245-32173-07711-55769-04429 tcl slt th3 src

This flag determines whether or not the F_FULLFSYNC syncing method is used on systems that support it.

th3/req1/pragma11b.test:39

/* IMP: R-09748-03241 */
# EVIDENCE-OF: R-09748-03241 This flag determines whether or not the
# F_FULLFSYNC syncing method is used on systems that support it.

R-30269-25284-41363-48378-16742-02348-00072-11353 tcl slt th3 src

The default value of the fullfsync flag is off.

th3/req1/pragma11b.test:24

/* IMP: R-30269-25284 */
# EVIDENCE-OF: R-30269-25284 The default value of the fullfsync flag is
# off.

R-23984-49501-37243-56289-03587-60124-22633-25227 tcl slt th3 src

PRAGMA ignore_check_constraints = boolean;

This pragma enables or disables the enforcement of CHECK constraints.

th3/req1/pragma20.test:21

/* IMP: R-23984-49501 */
# EVIDENCE-OF: R-23984-49501 PRAGMA ignore_check_constraints = boolean;
# This pragma enables or disables the enforcement of CHECK constraints.

R-26888-26313-07515-35775-03599-15989-59200-07369 tcl slt th3 src

The default setting is off, meaning that CHECK constraints are enforced by default.

th3/req1/pragma20.test:10

/* IMP: R-26888-26313 */
# EVIDENCE-OF: R-26888-26313 The default setting is off, meaning that
# CHECK constraints are enforced by default.

R-33848-17975-36657-57635-49129-43335-29769-30640 tcl slt th3 src

PRAGMA schema.incremental_vacuum(N);
PRAGMA
schema.incremental_vacuum;

The incremental_vacuum pragma causes up to N pages to be removed from the freelist.

th3/req1/pragma21.test:37

/* IMP: R-33848-17975 */
# EVIDENCE-OF: R-33848-17975 PRAGMA schema.incremental_vacuum(N); PRAGMA
# schema.incremental_vacuum; The incremental_vacuum pragma causes up to
# N pages to be removed from the freelist.

R-52155-58082-26086-07987-14656-12581-61413-44017 tcl slt th3 src

The database file is truncated by the same amount.

th3/req1/pragma21.test:41

/* IMP: R-52155-58082 */
# EVIDENCE-OF: R-52155-58082 The database file is truncated by the same
# amount.

R-42333-10376-25894-44230-56156-46004-61943-25934 tcl slt th3 src

The incremental_vacuum pragma has no effect if the database is not in auto_vacuum=incremental mode or if there are no pages on the freelist.

th3/req1/pragma21.test:77

/* IMP: R-42333-10376 */
# EVIDENCE-OF: R-42333-10376 The incremental_vacuum pragma has no effect
# if the database is not in auto_vacuum=incremental mode or if there are
# no pages on the freelist.

R-63684-00056-12744-41513-44383-51179-47104-18458 tcl slt th3 src

If there are fewer than N pages on the freelist, or if N is less than 1, or if the "(N)" argument is omitted, then the entire freelist is cleared.

th3/req1/pragma21.test:50

/* IMP: R-63684-00056 */
# EVIDENCE-OF: R-63684-00056 If there are fewer than N pages on the
# freelist, or if N is less than 1, or if the "(N)" argument is omitted,
# then the entire freelist is cleared.

R-29448-60346-55143-08707-47583-53661-32513-61785 tcl slt th3 src

PRAGMA schema.index_info(index-name);

This pragma returns one row for each key column in the named index.

tcl/pragma.test:714   th3/req1/pragma15.test:14

/* IMP: R-29448-60346 */
# EVIDENCE-OF: R-29448-60346 PRAGMA schema.index_info(index-name); This
# pragma returns one row for each key column in the named index.

R-23114-21695-36244-34709-35067-61095-03657-31992 tcl slt th3 src

The auxiliary index-columns are not shown by the index_info pragma, but they are listed by the index_xinfo pragma.

tcl/pragma.test:704   th3/req1/pragma15x.test:68

/* IMP: R-23114-21695 */
# EVIDENCE-OF: R-23114-21695 The auxiliary index-columns are not shown
# by the index_info pragma, but they are listed by the index_xinfo
# pragma.

R-34186-52914-35981-17820-54007-24600-55033-63809 tcl slt th3 src

The rank of the column within the index. (0 means left-most.)

tcl/pragma.test:718   th3/req1/pragma15.test:18

/* IMP: R-34186-52914 */
# EVIDENCE-OF: R-34186-52914 The rank of the column within the index. (0
# means left-most.)

R-65019-08383-37218-08161-37100-03292-58035-06860 tcl slt th3 src

The rank of the column within the table being indexed.

tcl/pragma.test:722   th3/req1/pragma15.test:22

/* IMP: R-65019-08383 */
# EVIDENCE-OF: R-65019-08383 The rank of the column within the table
# being indexed.

R-09773-34266-19272-64425-39680-64969-31410-22959 tcl slt th3 src

The name of the column being indexed.

tcl/pragma.test:726   th3/req1/pragma15.test:26

/* IMP: R-09773-34266 */
# EVIDENCE-OF: R-09773-34266 The name of the column being indexed.

R-64103-17776-35606-10153-57490-26630-22697-19436 tcl slt th3 src

PRAGMA schema.index_list(table-name);

This pragma returns one row for each index associated with the given table.

tcl/pragma.test:1893   tcl/pragma.test:801   th3/req1/pragma15.test:72

/* IMP: R-64103-17776 */
# EVIDENCE-OF: R-64103-17776 PRAGMA schema.index_list(table-name); This
# pragma returns one row for each index associated with the given table.

R-02753-24748-27922-38844-00567-47453-02164-18624 tcl slt th3 src

A sequence number assigned to each index for internal tracking purposes.

tcl/pragma.test:1897   th3/req1/pragma15.test:76

/* IMP: R-02753-24748 */
# EVIDENCE-OF: R-02753-24748 A sequence number assigned to each index
# for internal tracking purposes.

R-35496-03635-05800-19681-11567-09775-48933-50480 tcl slt th3 src

The name of the index.

tcl/pragma.test:1901   th3/req1/pragma15.test:80

/* IMP: R-35496-03635 */
# EVIDENCE-OF: R-35496-03635 The name of the index.

R-57301-64506-10586-49672-48759-26432-01783-64495 tcl slt th3 src

"1" if the index is UNIQUE and "0" if not.

tcl/pragma.test:1904   th3/req1/pragma15.test:83

/* IMP: R-57301-64506 */
# EVIDENCE-OF: R-57301-64506 "1" if the index is UNIQUE and "0" if not.

R-36609-39554-02465-47159-11232-33677-21086-13785 tcl slt th3 src

"c" if the index was created by a CREATE INDEX statement, "u" if the index was created by a UNIQUE constraint, or "pk" if the index was created by a PRIMARY KEY constraint.

tcl/pragma.test:1907   th3/req1/pragma15.test:86

/* IMP: R-36609-39554 */
# EVIDENCE-OF: R-36609-39554 "c" if the index was created by a CREATE
# INDEX statement, "u" if the index was created by a UNIQUE constraint,
# or "pk" if the index was created by a PRIMARY KEY constraint.

R-34457-09668-37447-61343-26020-24066-28137-60426 tcl slt th3 src

"1" if the index is a partial index and "0" if not.

tcl/index7.test:66   th3/req1/pragma15.test:91

/* IMP: R-34457-09668 */
# EVIDENCE-OF: R-34457-09668 "1" if the index is a partial index and "0"
# if not.

R-56143-29319-15474-25022-04217-21901-07164-36607 tcl slt th3 src

PRAGMA schema.index_xinfo(index-name);

This pragma returns information about every column in an index.

tcl/pragma.test:1849   th3/req1/pragma15x.test:12

/* IMP: R-56143-29319 */
# EVIDENCE-OF: R-56143-29319 PRAGMA schema.index_xinfo(index-name); This
# pragma returns information about every column in an index.

R-45970-35618-54800-59485-17030-46204-37187-33805 tcl slt th3 src

Unlike this index_info pragma, this pragma returns information about every column in the index, not just the key columns.

tcl/pragma.test:1852   th3/req1/pragma15x.test:15

/* IMP: R-45970-35618 */
# EVIDENCE-OF: R-45970-35618 Unlike this index_info pragma, this pragma
# returns information about every column in the index, not just the key
# columns.

R-00197-14279-64967-54349-51250-28289-13484-05768 tcl slt th3 src

The rank of the column within the index. (0 means left-most. Key columns come before auxiliary columns.)

tcl/pragma.test:1862   th3/req1/pragma15x.test:20

/* IMP: R-00197-14279 */
# EVIDENCE-OF: R-00197-14279 The rank of the column within the index. (0
# means left-most. Key columns come before auxiliary columns.)

R-40889-06838-65299-31381-40601-55617-17573-42107 tcl slt th3 src

The rank of the column within the table being indexed, or -1 if the index-column is the rowid of the table being indexed.

tcl/pragma.test:1866   th3/req1/pragma15x.test:24

/* IMP: R-40889-06838 */
# EVIDENCE-OF: R-40889-06838 The rank of the column within the table
# being indexed, or -1 if the index-column is the rowid of the table
# being indexed.

R-22751-28901-48150-55263-36520-47093-21742-33919 tcl slt th3 src

The name of the column being indexed, or NULL if the index-column is the rowid of the table being indexed.

tcl/pragma.test:1871   th3/req1/pragma15x.test:29

/* IMP: R-22751-28901 */
# EVIDENCE-OF: R-22751-28901 The name of the column being indexed, or
# NULL if the index-column is the rowid of the table being indexed.

R-11847-09179-40053-04599-51829-21779-50650-56945 tcl slt th3 src

1 if the index-column is sorted in reverse (DESC) order by the index and 0 otherwise.

tcl/pragma.test:1875   th3/req1/pragma15x.test:33

/* IMP: R-11847-09179 */
# EVIDENCE-OF: R-11847-09179 1 if the index-column is sorted in reverse
# (DESC) order by the index and 0 otherwise.

R-15313-19540-00987-59181-43377-13803-46289-24513 tcl slt th3 src

The name for the collating sequence used to compare values in the index-column.

tcl/pragma.test:1879   th3/req1/pragma15x.test:37

/* IMP: R-15313-19540 */
# EVIDENCE-OF: R-15313-19540 The name for the collating sequence used to
# compare values in the index-column.

R-14310-64553-52878-24653-31344-14066-48757-18483 tcl slt th3 src

1 if the index-column is a key column and 0 if the index-column is an auxiliary column.

tcl/pragma.test:1883   th3/req1/pragma15x.test:41

/* IMP: R-14310-64553 */
# EVIDENCE-OF: R-14310-64553 1 if the index-column is a key column and 0
# if the index-column is an auxiliary column.

R-58358-50570-50197-06415-13573-58509-53198-19669 tcl slt th3 src

This pragma does an integrity check of the entire database.

/* IMP: R-58358-50570 */
# EVIDENCE-OF: R-58358-50570 This pragma does an integrity check of the
# entire database.

R-56966-62845-41906-06988-64325-13391-23596-51092 tcl slt th3 src

The integrity_check pragma looks for out-of-order records, missing pages, malformed records, missing index entries, and UNIQUE and NOT NULL constraint errors.

/* IMP: R-56966-62845 */
# EVIDENCE-OF: R-56966-62845 The integrity_check pragma looks for
# out-of-order records, missing pages, malformed records, missing index
# entries, and UNIQUE and NOT NULL constraint errors.

R-05529-49311-19385-25088-51848-47183-58001-39726 tcl slt th3 src

If the integrity_check pragma finds problems, strings are returned (as multiple rows with a single column per row) which describe the problems.

th3/req1/integrityck01.test:72

/* IMP: R-05529-49311 */
# EVIDENCE-OF: R-05529-49311 If the integrity_check pragma finds
# problems, strings are returned (as multiple rows with a single column
# per row) which describe the problems.

R-41914-07968-11618-38374-65120-62637-18868-18201 tcl slt th3 src

Pragma integrity_check will return at most N errors before the analysis quits, with N defaulting to 100.

th3/req1/integrityck01.test:29

/* IMP: R-41914-07968 */
# EVIDENCE-OF: R-41914-07968 Pragma integrity_check will return at most
# N errors before the analysis quits, with N defaulting to 100.

R-35592-43376-11648-07628-49784-57585-43144-43201 tcl slt th3 src

If pragma integrity_check finds no errors, a single row with the value 'ok' is returned.

th3/req1/integrityck01.test:11

/* IMP: R-35592-43376 */
# EVIDENCE-OF: R-35592-43376 If pragma integrity_check finds no errors,
# a single row with the value 'ok' is returned.

R-39763-46240-25727-03918-12212-03992-13820-06726 tcl slt th3 src

PRAGMA schema.journal_mode;
PRAGMA
schema.journal_mode = DELETE | TRUNCATE | PERSIST | MEMORY | WAL | OFF

This pragma queries or sets the journal mode for databases associated with the current database connection.

th3/req1/pragma23.test:11

/* IMP: R-39763-46240 */
# EVIDENCE-OF: R-39763-46240 PRAGMA schema.journal_mode; PRAGMA
# schema.journal_mode = DELETE | TRUNCATE | PERSIST | MEMORY | WAL | OFF
# This pragma queries or sets the journal mode for databases associated
# with the current database connection.

R-34456-00884-53550-63882-43324-33974-40030-43057 tcl slt th3 src

The first form of this pragma queries the current journaling mode for database.

th3/req1/pragma23.test:16

/* IMP: R-34456-00884 */
# EVIDENCE-OF: R-34456-00884 The first form of this pragma queries the
# current journaling mode for database.

R-45251-44035-31636-37177-08697-29378-39945-28652 tcl slt th3 src

When database is omitted, the "main" database is queried.

th3/req1/pragma23.test:19

/* IMP: R-45251-44035 */
# EVIDENCE-OF: R-45251-44035 When database is omitted, the "main"
# database is queried.

R-45883-43943-57871-65431-07060-17806-58519-01354 tcl slt th3 src

The second form changes the journaling mode for "database" or for all attached databases if "database" is omitted.

th3/req1/pragma23.test:22

/* IMP: R-45883-43943 */
# EVIDENCE-OF: R-45883-43943 The second form changes the journaling mode
# for "database" or for all attached databases if "database" is omitted.

R-62787-27093-28776-07696-30673-33201-48142-02108 tcl slt th3 src

The new journal mode is returned.

th3/req1/pragma23.test:25

/* IMP: R-62787-27093 */
# EVIDENCE-OF: R-62787-27093 The new journal mode is returned.

R-10827-60271-29957-56948-24015-30184-30486-05573 tcl slt th3 src

If the journal mode could not be changed, the original journal mode is returned.

th3/req1/pragma23.test:65

/* IMP: R-10827-60271 */
# EVIDENCE-OF: R-10827-60271 If the journal mode could not be changed,
# the original journal mode is returned.

R-19245-12964-15266-21259-12378-18812-33916-24209 tcl slt th3 src

The DELETE journaling mode is the normal behavior.

th3/req1/pragma23.test:129

/* IMP: R-19245-12964 */
# EVIDENCE-OF: R-19245-12964 The DELETE journaling mode is the normal
# behavior.

R-05617-50091-64320-09946-64698-41149-46478-61865 tcl slt th3 src

In the DELETE mode, the rollback journal is deleted at the conclusion of each transaction.

th3/req1/pragma24.test:11

/* IMP: R-05617-50091 */
# EVIDENCE-OF: R-05617-50091 In the DELETE mode, the rollback journal is
# deleted at the conclusion of each transaction.

R-08198-48522-54017-24058-29188-47107-45936-39213 tcl slt th3 src

The TRUNCATE journaling mode commits transactions by truncating the rollback journal to zero-length instead of deleting it.

th3/req1/pragma24.test:32

/* IMP: R-08198-48522 */
# EVIDENCE-OF: R-08198-48522 The TRUNCATE journaling mode commits
# transactions by truncating the rollback journal to zero-length instead
# of deleting it.

R-44624-50921-54896-40195-40598-14115-12715-41655 tcl slt th3 src

The PERSIST journaling mode prevents the rollback journal from being deleted at the end of each transaction. Instead, the header of the journal is overwritten with zeros.

th3/req1/pragma24.test:47

/* IMP: R-44624-50921 */
# EVIDENCE-OF: R-44624-50921 The PERSIST journaling mode prevents the
# rollback journal from being deleted at the end of each transaction.
# Instead, the header of the journal is overwritten with zeros.

R-43520-58856-06723-52893-53353-04776-19721-26256 tcl slt th3 src

The MEMORY journaling mode stores the rollback journal in volatile RAM.

th3/req1/pragma25.test:67

/* IMP: R-43520-58856 */
# EVIDENCE-OF: R-43520-58856 The MEMORY journaling mode stores the
# rollback journal in volatile RAM.

R-03364-08004-01846-16626-35041-21418-01059-33152 tcl slt th3 src

This saves disk I/O but at the expense of database safety and integrity.

th3/req1/pragma25.test:30

/* IMP: R-03364-08004 */
# EVIDENCE-OF: R-03364-08004 This saves disk I/O but at the expense of
# database safety and integrity.

R-05226-30063-38393-23337-31220-10155-17682-45217 tcl slt th3 src

If the application using SQLite crashes in the middle of a transaction when the MEMORY journaling mode is set, then the database file will very likely go corrupt.

th3/req1/pragma25.test:92

/* IMP: R-05226-30063 */
# EVIDENCE-OF: R-05226-30063 If the application using SQLite crashes in
# the middle of a transaction when the MEMORY journaling mode is set,
# then the database file will very likely go corrupt.

R-41417-64456-42642-02544-40631-11378-24048-47614 tcl slt th3 src

The WAL journaling mode uses a write-ahead log instead of a rollback journal to implement transactions.

th3/req1/pragma24.test:68

/* IMP: R-41417-64456 */
# EVIDENCE-OF: R-41417-64456 The WAL journaling mode uses a write-ahead
# log instead of a rollback journal to implement transactions.

R-64967-62742-25252-37896-34522-17857-15899-52885 tcl slt th3 src

The WAL journaling mode is persistent; after being set it stays in effect across multiple database connections and after closing and reopening the database.

th3/req1/pragma24.test:86

/* IMP: R-64967-62742 */
# EVIDENCE-OF: R-64967-62742 The WAL journaling mode is persistent;
# after being set it stays in effect across multiple database
# connections and after closing and reopening the database.

R-18981-44563-59556-01794-47708-02337-53296-37760 tcl slt th3 src

The OFF journaling mode disables the rollback journal completely.

th3/req1/pragma25.test:122

/* IMP: R-18981-44563 */
# EVIDENCE-OF: R-18981-44563 The OFF journaling mode disables the
# rollback journal completely.

R-20262-06249-08007-38401-43127-56610-34465-06889 tcl slt th3 src

No rollback journal is ever created and hence there is never a rollback journal to delete.

th3/req1/pragma25.test:125

/* IMP: R-20262-06249 */
# EVIDENCE-OF: R-20262-06249 No rollback journal is ever created and
# hence there is never a rollback journal to delete.

R-41969-26805-23474-17997-34431-40001-19681-04714 tcl slt th3 src

If the application crashes in the middle of a transaction when the OFF journaling mode is set, then the database file will very likely go corrupt.

th3/req1/pragma25.test:162

/* IMP: R-41969-26805 */
# EVIDENCE-OF: R-41969-26805 If the application crashes in the middle of
# a transaction when the OFF journaling mode is set, then the database
# file will very likely go corrupt.

R-26383-00685-00003-12709-20041-02640-63629-60960 tcl slt th3 src

Note that the journal_mode for an in-memory database is either MEMORY or OFF and can not be changed to a different value.

th3/req1/pragma23.test:68

/* IMP: R-26383-00685 */
# EVIDENCE-OF: R-26383-00685 Note that the journal_mode for an in-memory
# database is either MEMORY or OFF and can not be changed to a different
# value.

R-04857-57605-48133-44150-30535-05379-36560-24650 tcl slt th3 src

An attempt to change the journal_mode of an in-memory database to any setting other than MEMORY or OFF is ignored.

th3/req1/pragma23.test:72

/* IMP: R-04857-57605 */
# EVIDENCE-OF: R-04857-57605 An attempt to change the journal_mode of an
# in-memory database to any setting other than MEMORY or OFF is ignored.

R-44336-03155-46084-50304-15554-44543-05811-18658 tcl slt th3 src

Note also that the journal_mode cannot be changed while a transaction is active.

th3/req1/pragma23.test:114

/* IMP: R-44336-03155 */
# EVIDENCE-OF: R-44336-03155 Note also that the journal_mode cannot be
# changed while a transaction is active.

R-23038-23996-21339-41009-49120-44197-27486-19934 tcl slt th3 src

If a database connection is operating in exclusive locking mode or in persistent journal mode (PRAGMA journal_mode=persist) then after committing a transaction the rollback journal file may remain in the file-system.

th3/req1/pragma26.test:121

/* IMP: R-23038-23996 */
# EVIDENCE-OF: R-23038-23996 If a database connection is operating in
# exclusive locking mode or in persistent journal mode (PRAGMA
# journal_mode=persist) then after committing a transaction the rollback
# journal file may remain in the file-system.

R-05912-10167-55658-18265-62443-52976-18281-50268 tcl slt th3 src

The journal_size_limit pragma may be used to limit the size of rollback-journal and WAL files left in the file-system after transactions or checkpoints.

th3/req1/pragma26.test:10

/* IMP: R-05912-10167 */
# EVIDENCE-OF: R-05912-10167 The journal_size_limit pragma may be used
# to limit the size of rollback-journal and WAL files left in the
# file-system after transactions or checkpoints.

R-58293-02725-64867-56851-12538-45360-38316-49543 tcl slt th3 src

Each time a transaction is committed or a WAL file resets, SQLite compares the size of the rollback journal file or WAL file left in the file-system to the size limit set by this pragma and if the journal or WAL file is larger it is truncated to the limit.

th3/req1/pragma26.test:115

/* IMP: R-58293-02725 */
# EVIDENCE-OF: R-58293-02725 Each time a transaction is committed or a
# WAL file resets, SQLite compares the size of the rollback journal file
# or WAL file left in the file-system to the size limit set by this
# pragma and if the journal or WAL file is larger it is truncated to the
# limit.

R-20915-35810-14572-42507-50726-14071-51730-17527 tcl slt th3 src

The second form of the pragma listed above is used to set a new limit in bytes for the specified database.

th3/req1/pragma26.test:28

/* IMP: R-20915-35810 */
# EVIDENCE-OF: R-20915-35810 The second form of the pragma listed above
# is used to set a new limit in bytes for the specified database.

R-17615-49737-42602-31197-05538-64484-08202-17390 tcl slt th3 src

A negative number implies no limit.

th3/req1/pragma26.test:157

/* IMP: R-17615-49737 */
# EVIDENCE-OF: R-17615-49737 A negative number implies no limit.

R-42584-44456-56130-43487-49627-44255-00000-11489 tcl slt th3 src

To always truncate rollback journals and WAL files to their minimum size, set the journal_size_limit to zero.

/* IMP: R-42584-44456 */
# EVIDENCE-OF: R-42584-44456 To always truncate rollback journals and
# WAL files to their minimum size, set the journal_size_limit to zero.

R-10777-25114-28148-35067-60781-11341-59885-20930 tcl slt th3 src

Both the first and second forms of the pragma listed above return a single result row containing a single integer column - the value of the journal size limit in bytes.

th3/req1/pragma26.test:24

/* IMP: R-10777-25114 */
# EVIDENCE-OF: R-10777-25114 Both the first and second forms of the
# pragma listed above return a single result row containing a single
# integer column - the value of the journal size limit in bytes.

R-35812-46755-23531-40873-62145-48640-15024-41940 tcl slt th3 src

The default journal size limit is -1 (no limit).

th3/req1/pragma26.test:15

/* IMP: R-35812-46755 */
# EVIDENCE-OF: R-35812-46755 The default journal size limit is -1 (no
# limit).

R-48576-42125-14408-22326-23329-43841-05542-05024 tcl slt th3 src

This pragma only operates on the single database specified prior to the pragma name (or on the "main" database if no database is specified.

th3/req1/pragma26.test:68

/* IMP: R-48576-42125 */
# EVIDENCE-OF: R-48576-42125 This pragma only operates on the single
# database specified prior to the pragma name (or on the "main" database
# if no database is specified.

R-33638-42108-26905-16665-62411-42905-33144-33922 tcl slt th3 src

PRAGMA legacy_file_format;
PRAGMA legacy_file_format = boolean

This pragma sets or queries the value of the legacy_file_format flag.

th3/req1/pragma22.test:26

/* IMP: R-33638-42108 */
# EVIDENCE-OF: R-33638-42108 PRAGMA legacy_file_format; PRAGMA
# legacy_file_format = boolean This pragma sets or queries the value of
# the legacy_file_format flag.

R-40228-05483-58480-12139-54798-33124-01021-28688 tcl slt th3 src

When this flag is on, new SQLite databases are created in a file format that is readable and writable by all versions of SQLite going back to 3.0.0.

th3/req1/pragma22.test:42

/* IMP: R-40228-05483 */
# EVIDENCE-OF: R-40228-05483 When this flag is on, new SQLite databases
# are created in a file format that is readable and writable by all
# versions of SQLite going back to 3.0.0.

R-09458-10155-15158-32437-48979-56448-00494-45626 tcl slt th3 src

When the flag is off, new databases are created using the latest file format which might not be readable or writable by versions of SQLite prior to 3.3.0.

th3/req1/pragma22.test:70

/* IMP: R-09458-10155 */
# EVIDENCE-OF: R-09458-10155 When the flag is off, new databases are
# created using the latest file format which might not be readable or
# writable by versions of SQLite prior to 3.3.0.

R-26226-51609-37600-59924-62338-40225-61693-64519 tcl slt th3 src

When the legacy_file_format pragma is issued with no argument, it returns the setting of the flag.

th3/req1/pragma22.test:30

/* IMP: R-26226-51609 */
# EVIDENCE-OF: R-26226-51609 When the legacy_file_format pragma is
# issued with no argument, it returns the setting of the flag.

R-45936-30472-47790-39733-64722-07720-23744-44892 tcl slt th3 src

This pragma does not tell which file format the current database is using; it tells what format will be used by any newly created databases.

th3/req1/pragma22.test:56

/* IMP: R-45936-30472 */
# EVIDENCE-OF: R-45936-30472 This pragma does not tell which file format
# the current database is using; it tells what format will be used by
# any newly created databases.

R-64727-38667-40496-57700-54437-61436-18506-15131 tcl slt th3 src

The legacy_file_format pragma is initialized to OFF when an existing database in the newer file format is first opened.

/* IMP: R-64727-38667 */
# EVIDENCE-OF: R-64727-38667 The legacy_file_format pragma is
# initialized to OFF when an existing database in the newer file format
# is first opened.

R-20944-50040-32536-32451-12201-33674-47359-21324 tcl slt th3 src

The default file format is set by the SQLITE_DEFAULT_FILE_FORMAT compile-time option.

th3/req1/pragma22.test:11

/* IMP: R-20944-50040 */
# EVIDENCE-OF: R-20944-50040 The default file format is set by the
# SQLITE_DEFAULT_FILE_FORMAT compile-time option.

R-53361-24419-19828-49263-36591-42427-29848-60757 tcl slt th3 src

PRAGMA schema.locking_mode;
PRAGMA
schema.locking_mode = NORMAL | EXCLUSIVE

th3/req1/pragma04.test:13

/* IMP: R-53361-24419 */
# EVIDENCE-OF: R-53361-24419 PRAGMA schema.locking_mode; PRAGMA
# schema.locking_mode = NORMAL | EXCLUSIVE

R-39608-49000-51968-24842-19070-08094-34539-25072 tcl slt th3 src

This pragma sets or queries the database connection locking-mode.

th3/req1/pragma04.test:16

/* IMP: R-39608-49000 */
# EVIDENCE-OF: R-39608-49000 This pragma sets or queries the database
# connection locking-mode.

R-12374-37755-19006-43319-29109-21110-40176-02153 tcl slt th3 src

The locking-mode is either NORMAL or EXCLUSIVE.

th3/req1/pragma04.test:19

/* IMP: R-12374-37755 */
# EVIDENCE-OF: R-12374-37755 The locking-mode is either NORMAL or
# EXCLUSIVE.

R-43797-56749-02967-54481-29642-02482-32480-02233 tcl slt th3 src

In NORMAL locking-mode (the default unless overridden at compile-time using SQLITE_DEFAULT_LOCKING_MODE), a database connection unlocks the database file at the conclusion of each read or write transaction.

th3/req1/pragma04.test:52

/* IMP: R-43797-56749 */
# EVIDENCE-OF: R-43797-56749 In NORMAL locking-mode (the default unless
# overridden at compile-time using SQLITE_DEFAULT_LOCKING_MODE), a
# database connection unlocks the database file at the conclusion of
# each read or write transaction.

R-29276-00741-11068-20150-45137-35653-26807-40835 tcl slt th3 src

When the locking-mode is set to EXCLUSIVE, the database connection never releases file-locks.

th3/req1/pragma04.test:87

/* IMP: R-29276-00741 */
# EVIDENCE-OF: R-29276-00741 When the locking-mode is set to EXCLUSIVE,
# the database connection never releases file-locks.

R-07178-42569-23822-25165-44123-64804-39149-01193 tcl slt th3 src

The first time the database is read in EXCLUSIVE mode, a shared lock is obtained and held.

th3/req1/pragma04.test:90

/* IMP: R-07178-42569 */
# EVIDENCE-OF: R-07178-42569 The first time the database is read in
# EXCLUSIVE mode, a shared lock is obtained and held.

R-39464-36566-10218-24417-22703-07867-12954-27805 tcl slt th3 src

The first time the database is written, an exclusive lock is obtained and held.

th3/req1/pragma04.test:132

/* IMP: R-39464-36566 */
# EVIDENCE-OF: R-39464-36566 The first time the database is written, an
# exclusive lock is obtained and held.

R-50610-58991-40013-53389-28738-38932-29911-53900 tcl slt th3 src

Database locks obtained by a connection in EXCLUSIVE mode may be released either by closing the database connection, or by setting the locking-mode back to NORMAL using this pragma and then accessing the database file (for read or write).

th3/req1/pragma04.test:148

/* IMP: R-50610-58991 */
# EVIDENCE-OF: R-50610-58991 Database locks obtained by a connection in
# EXCLUSIVE mode may be released either by closing the database
# connection, or by setting the locking-mode back to NORMAL using this
# pragma and then accessing the database file (for read or write).

R-00099-40772-25508-42886-05693-46370-34145-00683 tcl slt th3 src

Simply setting the locking-mode to NORMAL is not enough - locks are not released until the next time the database file is accessed.

th3/req1/pragma04.test:164

/* IMP: R-00099-40772 */
# EVIDENCE-OF: R-00099-40772 Simply setting the locking-mode to NORMAL
# is not enough - locks are not released until the next time the
# database file is accessed.

R-43609-64396-32492-00883-25685-46145-60531-30223 tcl slt th3 src

The application wants to prevent other processes from accessing the database file.

th3/req1/pragma04.test:96

/* IMP: R-43609-64396 */
# EVIDENCE-OF: R-43609-64396 The application wants to prevent other
# processes from accessing the database file.

R-38462-47168-00802-29232-37957-12454-50485-62719 tcl slt th3 src

The number of system calls for filesystem operations is reduced, possibly resulting in a small performance increase.

th3/req1/pragma05.test:97

/* IMP: R-38462-47168 */
# EVIDENCE-OF: R-38462-47168 The number of system calls for filesystem
# operations is reduced, possibly resulting in a small performance
# increase.

R-52075-50256-20099-08079-26279-42286-42612-03538 tcl slt th3 src

WAL databases can be accessed in EXCLUSIVE mode without the use of shared memory.

th3/req1/pragma05.test:128

/* IMP: R-52075-50256 */
# EVIDENCE-OF: R-52075-50256 WAL databases can be accessed in EXCLUSIVE
# mode without the use of shared memory.

R-35311-10820-21037-47746-53186-51250-62481-54055 tcl slt th3 src

When the locking_mode pragma specifies a particular database, for example:

PRAGMA main.locking_mode=EXCLUSIVE;

Then the locking mode applies only to the named database.

th3/req1/pragma04.test:197

/* IMP: R-35311-10820 */
# EVIDENCE-OF: R-35311-10820 When the locking_mode pragma specifies a
# particular database, for example: PRAGMA main.locking_mode=EXCLUSIVE;
# Then the locking mode applies only to the named database.

R-46677-03283-38607-60635-61745-23618-46045-62138 tcl slt th3 src

If no database name qualifier precedes the "locking_mode" keyword then the locking mode is applied to all databases, including any new databases added by subsequent ATTACH commands.

th3/req1/pragma04.test:236

/* IMP: R-46677-03283 */
# EVIDENCE-OF: R-46677-03283 If no database name qualifier precedes the
# "locking_mode" keyword then the locking mode is applied to all
# databases, including any new databases added by subsequent ATTACH
# commands.

R-05196-58733-44887-26524-08639-58577-62968-38394 tcl slt th3 src

The "temp" database (in which TEMP tables and indices are stored) and in-memory databases always uses exclusive locking mode.

th3/req1/pragma04.test:329

/* IMP: R-05196-58733 */
# EVIDENCE-OF: R-05196-58733 The "temp" database (in which TEMP tables
# and indices are stored) and in-memory databases always uses exclusive
# locking mode.

R-30526-43432-10994-07089-02178-39041-60976-54446 tcl slt th3 src

The locking mode of temp and in-memory databases cannot be changed.

th3/req1/pragma04.test:333

/* IMP: R-30526-43432 */
# EVIDENCE-OF: R-30526-43432 The locking mode of temp and in-memory
# databases cannot be changed.

R-28307-32767-23693-57600-42950-25827-15696-21088 tcl slt th3 src

All other databases use the normal locking mode by default and are affected by this pragma.

th3/req1/pragma04.test:354

/* IMP: R-28307-32767 */
# EVIDENCE-OF: R-28307-32767 All other databases use the normal locking
# mode by default and are affected by this pragma.

R-15629-60483-22088-30931-50587-36197-35177-56236 tcl slt th3 src

If the locking mode is EXCLUSIVE when first entering WAL journal mode, then the locking mode cannot be changed to NORMAL until after exiting WAL journal mode.

th3/req1/pragma05.test:170

/* IMP: R-15629-60483 */
# EVIDENCE-OF: R-15629-60483 If the locking mode is EXCLUSIVE when first
# entering WAL journal mode, then the locking mode cannot be changed to
# NORMAL until after exiting WAL journal mode.

R-52874-10360-37775-63380-13039-47698-21027-19281 tcl slt th3 src

If the locking mode is NORMAL when first entering WAL journal mode, then the locking mode can be changed between NORMAL and EXCLUSIVE and back again at any time and without needing to exit WAL journal mode.

th3/req1/pragma05.test:139

/* IMP: R-52874-10360 */
# EVIDENCE-OF: R-52874-10360 If the locking mode is NORMAL when first
# entering WAL journal mode, then the locking mode can be changed
# between NORMAL and EXCLUSIVE and back again at any time and without
# needing to exit WAL journal mode.

R-48957-47016-25285-15223-13940-44175-60524-56619 tcl slt th3 src

PRAGMA schema.max_page_count;
PRAGMA
schema.max_page_count = N;

Query or set the maximum number of pages in the database file.

th3/req1/pragma12.test:25

/* IMP: R-48957-47016 */
# EVIDENCE-OF: R-48957-47016 PRAGMA schema.max_page_count; PRAGMA
# schema.max_page_count = N; Query or set the maximum number of pages in
# the database file.

R-31839-40105-47825-07965-38954-04263-02531-41060 tcl slt th3 src

Both forms of the pragma return the maximum page count.

th3/req1/pragma12.test:29

/* IMP: R-31839-40105 */
# EVIDENCE-OF: R-31839-40105 Both forms of the pragma return the maximum
# page count.

R-39051-42271-46025-06225-43154-22193-07696-21282 tcl slt th3 src

The second form attempts to modify the maximum page count.

th3/req1/pragma12.test:32

/* IMP: R-39051-42271 */
# EVIDENCE-OF: R-39051-42271 The second form attempts to modify the
# maximum page count.

R-23025-34321-53440-17551-64635-00032-03474-62946 tcl slt th3 src

The maximum page count cannot be reduced below the current database size.

th3/req1/pragma12.test:47

/* IMP: R-23025-34321 */
# EVIDENCE-OF: R-23025-34321 The maximum page count cannot be reduced
# below the current database size.

R-57347-36071-40541-19557-35566-60658-39421-45937 tcl slt th3 src


PRAGMA schema.mmap_size;
PRAGMA
schema.mmap_size=N

Query or change the maximum number of bytes that are set aside for memory-mapped I/O on a single database.

/* IMP: R-57347-36071 */
# EVIDENCE-OF: R-57347-36071 PRAGMA schema.mmap_size; PRAGMA
# schema.mmap_size=N Query or change the maximum number of bytes that
# are set aside for memory-mapped I/O on a single database.

R-08181-17347-07123-49289-35480-05775-37202-24874 tcl slt th3 src

The first form (without an argument) queries the current limit.

/* IMP: R-08181-17347 */
# EVIDENCE-OF: R-08181-17347 The first form (without an argument)
# queries the current limit.

R-01255-31602-49480-12710-05718-10731-47284-31520 tcl slt th3 src

The second form (with a numeric argument) sets the limit for the specified database, or for all databases if the optional database name is omitted.

/* IMP: R-01255-31602 */
# EVIDENCE-OF: R-01255-31602 The second form (with a numeric argument)
# sets the limit for the specified database, or for all databases if the
# optional database name is omitted.

R-08698-00464-45876-62927-50774-10665-22959-52892 tcl slt th3 src

In the second form, if the database name is omitted, the limit that is set becomes the default limit for all databases that are added to the database connection by subsequent ATTACH statements.

/* IMP: R-08698-00464 */
# EVIDENCE-OF: R-08698-00464 In the second form, if the database name is
# omitted, the limit that is set becomes the default limit for all
# databases that are added to the database connection by subsequent
# ATTACH statements.

R-53782-41596-18711-17394-59679-49399-55234-36791 tcl slt th3 src

The argument N is the maximum number of bytes of the database file that will be accessed using memory-mapped I/O.

/* IMP: R-53782-41596 */
# EVIDENCE-OF: R-53782-41596 The argument N is the maximum number of
# bytes of the database file that will be accessed using memory-mapped
# I/O.

R-14451-19951-27480-60238-09584-48372-64711-58964 tcl slt th3 src

If N is zero then memory mapped I/O is disabled.

/* IMP: R-14451-19951 */
# EVIDENCE-OF: R-14451-19951 If N is zero then memory mapped I/O is
# disabled.

R-27289-46867-00795-18230-38785-61782-07002-59582 tcl slt th3 src

If N is negative, then the limit reverts to the default value determined by the most recent sqlite3_config(SQLITE_CONFIG_MMAP_SIZE), or to the compile time default determined by SQLITE_DEFAULT_MMAP_SIZE if not start-time limit has been set.

/* IMP: R-27289-46867 */
# EVIDENCE-OF: R-27289-46867 If N is negative, then the limit reverts to
# the default value determined by the most recent
# sqlite3_config(SQLITE_CONFIG_MMAP_SIZE), or to the compile time
# default determined by SQLITE_DEFAULT_MMAP_SIZE if not start-time limit
# has been set.

R-15672-33611-05081-27963-61291-19773-24542-63496 tcl slt th3 src

PRAGMA schema.page_count;

Return the total number of pages in the database file.

tcl/pragma.test:1409   th3/req1/pragma12.test:13

/* IMP: R-15672-33611 */
# EVIDENCE-OF: R-15672-33611 PRAGMA schema.page_count; Return the total
# number of pages in the database file.

R-36190-27688-09198-02833-32879-47498-11674-13730 tcl slt th3 src

PRAGMA schema.page_size;
PRAGMA
schema.page_size = bytes;

Query or set the page size of the database.

/* IMP: R-36190-27688 */
# EVIDENCE-OF: R-36190-27688 PRAGMA schema.page_size; PRAGMA
# schema.page_size = bytes; Query or set the page size of the database.

R-58424-53543-49718-27899-29509-07852-05490-25692 tcl slt th3 src

The page size must be a power of two between 512 and 65536 inclusive.

/* IMP: R-58424-53543 */
# EVIDENCE-OF: R-58424-53543 The page size must be a power of two
# between 512 and 65536 inclusive.

R-59819-51448-16003-11815-02743-33577-02500-29005 tcl slt th3 src

When a new database is created, SQLite assigned a page size to the database based on platform and filesystem.

/* IMP: R-59819-51448 */
# EVIDENCE-OF: R-59819-51448 When a new database is created, SQLite
# assigned a page size to the database based on platform and filesystem.

R-52287-25867-02377-32286-13836-33551-39021-58125 tcl slt th3 src

The page_size pragma will only set in the page size if it is issued before any other SQL statements that cause I/O against the database file.

/* IMP: R-52287-25867 */
# EVIDENCE-OF: R-52287-25867 The page_size pragma will only set in the
# page size if it is issued before any other SQL statements that cause
# I/O against the database file.

R-39618-23133-00956-24239-08311-25501-36268-36512 tcl slt th3 src

If the page_size pragma is used to specify a new page size just prior to running the VACUUM command and if the database is not in WAL journal mode then VACUUM will change the page size to the new value.

/* IMP: R-39618-23133 */
# EVIDENCE-OF: R-39618-23133 If the page_size pragma is used to specify
# a new page size just prior to running the VACUUM command and if the
# database is not in WAL journal mode then VACUUM will change the page
# size to the new value.

R-64208-53052-48559-48683-00395-47002-65177-30547 tcl slt th3 src

The SQLITE_DEFAULT_PAGE_SIZE compile-time option can be used to change the default page size assigned to new databases.

/* IMP: R-64208-53052 */
# EVIDENCE-OF: R-64208-53052 The SQLITE_DEFAULT_PAGE_SIZE compile-time
# option can be used to change the default page size assigned to new
# databases.

R-43884-62039-21095-04781-32853-10749-54904-38600 tcl slt th3 src

The pragma is like integrity_check except that it does not verify UNIQUE and NOT NULL constraints and does not verify that index content matches table content.

/* IMP: R-43884-62039 */
# EVIDENCE-OF: R-43884-62039 The pragma is like integrity_check except
# that it does not verify UNIQUE and NOT NULL constraints and does not
# verify that index content matches table content.

R-52129-08912-02677-16711-14942-51135-37066-54539 tcl slt th3 src

Otherwise the two pragmas are the same.

/* IMP: R-52129-08912 */
# EVIDENCE-OF: R-52129-08912 Otherwise the two pragmas are the same.

R-15997-27576-09912-47070-23601-24983-46411-48984 tcl slt th3 src

PRAGMA read_uncommitted;
PRAGMA read_uncommitted =
boolean;

Query, set, or clear READ UNCOMMITTED isolation.

/* IMP: R-15997-27576 */
# EVIDENCE-OF: R-15997-27576 PRAGMA read_uncommitted; PRAGMA
# read_uncommitted = boolean; Query, set, or clear READ UNCOMMITTED
# isolation.

R-13547-45635-56676-46930-62295-21423-36076-50678 tcl slt th3 src

The default isolation level for SQLite is SERIALIZABLE.

/* IMP: R-13547-45635 */
# EVIDENCE-OF: R-13547-45635 The default isolation level for SQLite is
# SERIALIZABLE.

R-43230-40115-50366-23982-20450-64068-63336-08552 tcl slt th3 src

Any process or thread can select READ UNCOMMITTED isolation, but SERIALIZABLE will still be used except between connections that share a common page and schema cache.

/* IMP: R-43230-40115 */
# EVIDENCE-OF: R-43230-40115 Any process or thread can select READ
# UNCOMMITTED isolation, but SERIALIZABLE will still be used except
# between connections that share a common page and schema cache.

R-14195-12074-64677-06793-17072-43123-33020-17925 tcl slt th3 src

PRAGMA recursive_triggers;
PRAGMA recursive_triggers =
boolean;

Query, set, or clear the recursive trigger capability.

/* IMP: R-14195-12074 */
# EVIDENCE-OF: R-14195-12074 PRAGMA recursive_triggers; PRAGMA
# recursive_triggers = boolean; Query, set, or clear the recursive
# trigger capability.

R-55422-28457-57897-11786-10838-58259-25547-52567 tcl slt th3 src

Changing the recursive_triggers setting affects the execution of all statements prepared using the database connection, including those prepared before the setting was changed.

/* IMP: R-55422-28457 */
# EVIDENCE-OF: R-55422-28457 Changing the recursive_triggers setting
# affects the execution of all statements prepared using the database
# connection, including those prepared before the setting was changed.

R-44241-31306-56883-60998-04220-09447-33322-42012 tcl slt th3 src

Any existing statements prepared using the legacy sqlite3_prepare() interface may fail with an SQLITE_SCHEMA error after the recursive_triggers setting is changed.

/* IMP: R-44241-31306 */
# EVIDENCE-OF: R-44241-31306 Any existing statements prepared using the
# legacy sqlite3_prepare() interface may fail with an SQLITE_SCHEMA
# error after the recursive_triggers setting is changed.

R-10284-11658-30925-56941-44506-24940-01613-45379 tcl slt th3 src

The depth of recursion for triggers has a hard upper limit set by the SQLITE_MAX_TRIGGER_DEPTH compile-time option and a run-time limit set by sqlite3_limit(db,SQLITE_LIMIT_TRIGGER_DEPTH,...).

/* IMP: R-10284-11658 */
# EVIDENCE-OF: R-10284-11658 The depth of recursion for triggers has a
# hard upper limit set by the SQLITE_MAX_TRIGGER_DEPTH compile-time
# option and a run-time limit set by
# sqlite3_limit(db,SQLITE_LIMIT_TRIGGER_DEPTH,...).

R-10260-62465-16896-41827-00033-64414-58979-23233 tcl slt th3 src

PRAGMA reverse_unordered_selects;
PRAGMA reverse_unordered_selects =
boolean;

th3/req1/pragma27.test:10

/* IMP: R-10260-62465 */
# EVIDENCE-OF: R-10260-62465 PRAGMA reverse_unordered_selects; PRAGMA
# reverse_unordered_selects = boolean;

R-01669-33464-29023-56990-09830-45167-30109-01082 tcl slt th3 src

When enabled, this PRAGMA causes many SELECT statements without an ORDER BY clause to emit their results in the reverse order from what they normally would.

th3/req1/pragma27.test:13

/* IMP: R-01669-33464 */
# EVIDENCE-OF: R-01669-33464 When enabled, this PRAGMA causes many
# SELECT statements without an ORDER BY clause to emit their results in
# the reverse order from what they normally would.

R-56910-04118-27168-31313-21595-13844-47285-28502 tcl slt th3 src

The reverse_unordered_selects pragma works for most SELECT statements, however the query planner may sometimes choose an algorithm that is not easily reversed, in which case the output will appear in the same order regardless of the reverse_unordered_selects setting.

th3/req1/pragma27.test:30

/* IMP: R-56910-04118 */
# EVIDENCE-OF: R-56910-04118 The reverse_unordered_selects pragma works
# for most SELECT statements, however the query planner may sometimes
# choose an algorithm that is not easily reversed, in which case the
# output will appear in the same order regardless of the
# reverse_unordered_selects setting.

R-28634-08997-04601-15091-04491-16529-23971-41258 tcl slt th3 src

The schema_version pragma will to get or set the value of the schema-version integer at offset 40 in the database header.

th3/req1/pragma28.test:36

/* IMP: R-28634-08997 */
# EVIDENCE-OF: R-28634-08997 The schema_version pragma will to get or
# set the value of the schema-version integer at offset 40 in the
# database header.

R-34230-56049-07873-23044-54462-14755-43207-20479 tcl slt th3 src

SQLite automatically increments the schema-version whenever the schema changes.

src/build.c:1467   th3/req1/pragma28.test:50   th3/req1/pragma28.test:90

/* IMP: R-34230-56049 */
# EVIDENCE-OF: R-34230-56049 SQLite automatically increments the
# schema-version whenever the schema changes.

R-03189-51135-06714-56467-07556-62916-33702-61870 tcl slt th3 src

As each SQL statement runs, the schema version is checked to ensure that the schema has not changed since the SQL statement was prepared.

src/vdbe.c:3211   th3/req1/pragma28.test:86

/* IMP: R-03189-51135 */
# EVIDENCE-OF: R-03189-51135 As each SQL statement runs, the schema
# version is checked to ensure that the schema has not changed since the
# SQL statement was prepared.

R-03492-54091-05767-20604-50043-45844-12167-38687 tcl slt th3 src

Subverting this mechanism by using "PRAGMA schema_version" my cause SQL statement to run using an obsolete schema, which can lead to incorrect answers and/or database corruption.

th3/req1/pragma28.test:106

/* IMP: R-03492-54091 */
# EVIDENCE-OF: R-03492-54091 Subverting this mechanism by using "PRAGMA
# schema_version" my cause SQL statement to run using an obsolete
# schema, which can lead to incorrect answers and/or database
# corruption.

R-64642-11678-21182-59383-08188-23316-62184-19046 tcl slt th3 src

For the purposes of this pragma, the VACUUM command is considered a schema change, since VACUUM will usual alter the "rootpage" values for entries in the sqlite_master table.

th3/req1/pragma28.test:76

/* IMP: R-64642-11678 */
# EVIDENCE-OF: R-64642-11678 For the purposes of this pragma, the VACUUM
# command is considered a schema change, since VACUUM will usual alter
# the "rootpage" values for entries in the sqlite_master table.

R-32449-11948-29947-21061-52467-01540-19627-03607 tcl slt th3 src

PRAGMA schema.secure_delete;
PRAGMA
schema.secure_delete = boolean

Query or change the secure-delete setting.

th3/cov1/pragma20.test:10   th3/cov1/pragma21.test:11

/* IMP: R-32449-11948 */
# EVIDENCE-OF: R-32449-11948 PRAGMA schema.secure_delete; PRAGMA
# schema.secure_delete = boolean Query or change the secure-delete
# setting.

R-26512-02966-03467-49127-26389-10088-58457-04547 tcl slt th3 src

When secure_delete is on, SQLite overwrites deleted content with zeros.

th3/cov1/pragma20.test:39

/* IMP: R-26512-02966 */
# EVIDENCE-OF: R-26512-02966 When secure_delete is on, SQLite overwrites
# deleted content with zeros.

R-65080-38137-04546-49301-16311-04630-53630-13035 tcl slt th3 src

The default setting for secure_delete is determined by the SQLITE_SECURE_DELETE compile-time option and is normally off.

th3/cov1/pragma20.test:95   th3/cov1/pragma21.test:40

/* IMP: R-65080-38137 */
# EVIDENCE-OF: R-65080-38137 The default setting for secure_delete is
# determined by the SQLITE_SECURE_DELETE compile-time option and is
# normally off.

R-43448-12354-12620-62746-36446-48855-45456-57112 tcl slt th3 src

When there are attached databases and no database is specified in the pragma, all databases have their secure-delete setting altered.

th3/cov1/pragma20.test:110   th3/cov1/pragma21.test:55

/* IMP: R-43448-12354 */
# EVIDENCE-OF: R-43448-12354 When there are attached databases and no
# database is specified in the pragma, all databases have their
# secure-delete setting altered.

R-36620-34941-18970-44416-30193-42757-18271-60128 tcl slt th3 src

The secure-delete setting for newly attached databases is the setting of the main database at the time the ATTACH command is evaluated.

th3/cov1/pragma20.test:133   th3/cov1/pragma21.test:78

/* IMP: R-36620-34941 */
# EVIDENCE-OF: R-36620-34941 The secure-delete setting for newly
# attached databases is the setting of the main database at the time the
# ATTACH command is evaluated.

R-15326-32258-55998-27349-46389-10665-40357-65139 tcl slt th3 src

When multiple database connections share the same cache, changing the secure-delete flag on one database connection changes it for them all.

th3/cov1/pragma21.test:99

/* IMP: R-15326-32258 */
# EVIDENCE-OF: R-15326-32258 When multiple database connections share
# the same cache, changing the secure-delete flag on one database
# connection changes it for them all.

R-23445-46109-37360-43495-15091-19372-04158-40881 tcl slt th3 src

This pragma causes the database connection on which it is invoked to free up as much memory as it can, by calling sqlite3_db_release_memory().

src/pragma.c:1816

/* IMP: R-23445-46109 */
# EVIDENCE-OF: R-23445-46109 This pragma causes the database connection
# on which it is invoked to free up as much memory as it can, by calling
# sqlite3_db_release_memory().

R-26343-45930-10507-06945-56497-65367-59680-35735 tcl slt th3 src

This pragma invokes the sqlite3_soft_heap_limit64() interface with the argument N, if N is specified and is a non-negative integer.

src/pragma.c:1847   tcl/softheap1.test:27

/* IMP: R-26343-45930 */
# EVIDENCE-OF: R-26343-45930 This pragma invokes the
# sqlite3_soft_heap_limit64() interface with the argument N, if N is
# specified and is a non-negative integer.

R-64451-07163-52994-32419-24914-21127-60728-58807 tcl slt th3 src

The soft_heap_limit pragma always returns the same integer that would be returned by the sqlite3_soft_heap_limit64(-1) C-language function.

src/pragma.c:1850   tcl/softheap1.test:31

/* IMP: R-64451-07163 */
# EVIDENCE-OF: R-64451-07163 The soft_heap_limit pragma always returns
# the same integer that would be returned by the
# sqlite3_soft_heap_limit64(-1) C-language function.

R-02545-26933-18999-48013-24665-54880-01582-10256 tcl slt th3 src

PRAGMA stats;

th3/cov1/index02.test:133

/* IMP: R-02545-26933 */
# EVIDENCE-OF: R-02545-26933 PRAGMA stats;

R-51288-13280-04102-45116-03468-31022-16818-18887 tcl slt th3 src

PRAGMA schema.synchronous;
PRAGMA
schema.synchronous = 0 | OFF | 1 | NORMAL | 2 | FULL | 3 | EXTRA;

Query or change the setting of the "synchronous" flag.

/* IMP: R-51288-13280 */
# EVIDENCE-OF: R-51288-13280 PRAGMA schema.synchronous; PRAGMA
# schema.synchronous = 0 | OFF | 1 | NORMAL | 2 | FULL | 3 | EXTRA;
# Query or change the setting of the "synchronous" flag.

R-41050-23052-29095-23436-46083-00331-23025-31647 tcl slt th3 src

The first (query) form will return the synchronous setting as an integer.

/* IMP: R-41050-23052 */
# EVIDENCE-OF: R-41050-23052 The first (query) form will return the
# synchronous setting as an integer.

R-18023-38297-26646-57171-09733-60965-00209-38549 tcl slt th3 src

EXTRA synchronous is like FULL with the addition that the directory containing a rollback journal is synced after that journal is unlinked to commit a transaction in DELETE mode.

/* IMP: R-18023-38297 */
# EVIDENCE-OF: R-18023-38297 EXTRA synchronous is like FULL with the
# addition that the directory containing a rollback journal is synced
# after that journal is unlinked to commit a transaction in DELETE mode.

R-52949-04679-63640-64673-56558-51308-22602-53102 tcl slt th3 src

When synchronous is FULL (2), the SQLite database engine will use the xSync method of the VFS to ensure that all content is safely written to the disk surface prior to continuing.

/* IMP: R-52949-04679 */
# EVIDENCE-OF: R-52949-04679 When synchronous is FULL (2), the SQLite
# database engine will use the xSync method of the VFS to ensure that
# all content is safely written to the disk surface prior to continuing.

R-05646-15132-11020-10123-43884-18508-24247-46472 tcl slt th3 src

When synchronous is NORMAL (1), the SQLite database engine will still sync at the most critical moments, but less often than in FULL mode.

/* IMP: R-05646-15132 */
# EVIDENCE-OF: R-05646-15132 When synchronous is NORMAL (1), the SQLite
# database engine will still sync at the most critical moments, but less
# often than in FULL mode.

R-18846-05946-40974-48701-32199-53032-10077-35779 tcl slt th3 src

With synchronous OFF (0), SQLite continues without syncing as soon as it has handed data off to the operating system.

/* IMP: R-18846-05946 */
# EVIDENCE-OF: R-18846-05946 With synchronous OFF (0), SQLite continues
# without syncing as soon as it has handed data off to the operating
# system.

R-50747-49923-21483-58514-27398-43836-46861-05011 tcl slt th3 src

In WAL mode when synchronous is NORMAL (1), the WAL file is synchronized before each checkpoint and the database file is synchronized after each completed checkpoint and the WAL file header is synchronized when a WAL file begins to be reused after a checkpoint, but no sync operations occur during most transactions.

/* IMP: R-50747-49923 */
# EVIDENCE-OF: R-50747-49923 In WAL mode when synchronous is NORMAL (1),
# the WAL file is synchronized before each checkpoint and the database
# file is synchronized after each completed checkpoint and the WAL file
# header is synchronized when a WAL file begins to be reused after a
# checkpoint, but no sync operations occur during most transactions.

R-11549-19921-03928-49162-57832-06313-31858-02375 tcl slt th3 src

With synchronous=FULL in WAL mode, an additional sync operation of the WAL file happens after each transaction commit.

/* IMP: R-11549-19921 */
# EVIDENCE-OF: R-11549-19921 With synchronous=FULL in WAL mode, an
# additional sync operation of the WAL file happens after each
# transaction commit.

R-20574-06110-58017-01957-45334-14595-63260-32420 tcl slt th3 src

The default setting is usually synchronous=FULL.

/* IMP: R-20574-06110 */
# EVIDENCE-OF: R-20574-06110 The default setting is usually
# synchronous=FULL.

R-09708-05727-57247-34421-62723-03461-49404-45269 tcl slt th3 src

PRAGMA schema.table_info(table-name);

This pragma returns one row for each column in the named table.

th3/req1/pragma15.test:121

/* IMP: R-09708-05727 */
# EVIDENCE-OF: R-09708-05727 PRAGMA schema.table_info(table-name); This
# pragma returns one row for each column in the named table.

R-35272-30329-38196-23593-15037-30954-61861-19508 tcl slt th3 src

Columns in the result set include the column name, data type, whether or not the column can be NULL, and the default value for the column.

th3/req1/pragma15.test:124

/* IMP: R-35272-30329 */
# EVIDENCE-OF: R-35272-30329 Columns in the result set include the
# column name, data type, whether or not the column can be NULL, and the
# default value for the column.

R-41361-32452-08540-06268-11369-38463-57924-37597 tcl slt th3 src

The "pk" column in the result set is zero for columns that are not part of the primary key, and is the index of the column in the primary key for columns that are part of the primary key.

/* IMP: R-41361-32452 */
# EVIDENCE-OF: R-41361-32452 The "pk" column in the result set is zero
# for columns that are not part of the primary key, and is the index of
# the column in the primary key for columns that are part of the primary
# key.

R-35224-32827-55933-44478-17553-06933-55583-57822 tcl slt th3 src

The table named in the table_info pragma can also be a view.

/* IMP: R-35224-32827 */
# EVIDENCE-OF: R-35224-32827 The table named in the table_info pragma
# can also be a view.

R-00336-65009-59389-29167-11927-65433-48801-33923 tcl slt th3 src

PRAGMA temp_store;
PRAGMA temp_store =
0 | DEFAULT | 1 | FILE | 2 | MEMORY;

Query or change the setting of the "temp_store" parameter.

/* IMP: R-00336-65009 */
# EVIDENCE-OF: R-00336-65009 PRAGMA temp_store; PRAGMA temp_store = 0 |
# DEFAULT | 1 | FILE | 2 | MEMORY; Query or change the setting of the
# "temp_store" parameter.

R-41435-15049-20553-57196-01541-07225-45251-60631 tcl slt th3 src

When temp_store is DEFAULT (0), the compile-time C preprocessor macro SQLITE_TEMP_STORE is used to determine where temporary tables and indices are stored.

/* IMP: R-41435-15049 */
# EVIDENCE-OF: R-41435-15049 When temp_store is DEFAULT (0), the
# compile-time C preprocessor macro SQLITE_TEMP_STORE is used to
# determine where temporary tables and indices are stored.

R-52186-13726-13182-41140-39915-38956-00015-42302 tcl slt th3 src

When temp_store is MEMORY (2) temporary tables and indices are kept in as if they were pure in-memory databases memory.

/* IMP: R-52186-13726 */
# EVIDENCE-OF: R-52186-13726 When temp_store is MEMORY (2) temporary
# tables and indices are kept in as if they were pure in-memory
# databases memory.

R-60292-04128-28566-07483-18233-58006-62395-18068 tcl slt th3 src

When temp_store is FILE (1) temporary tables and indices are stored in a file.

/* IMP: R-60292-04128 */
# EVIDENCE-OF: R-60292-04128 When temp_store is FILE (1) temporary
# tables and indices are stored in a file.

R-64488-01207-41542-36370-36584-38548-35733-59275 tcl slt th3 src

The temp_store_directory pragma can be used to specify the directory containing temporary files when FILE is specified.

/* IMP: R-64488-01207 */
# EVIDENCE-OF: R-64488-01207 The temp_store_directory pragma can be used
# to specify the directory containing temporary files when FILE is
# specified.

R-28465-35432-54989-58142-09664-10793-19950-25889 tcl slt th3 src

When the temp_store setting is changed, all existing temporary tables, indices, triggers, and views are immediately deleted.

/* IMP: R-28465-35432 */
# EVIDENCE-OF: R-28465-35432 When the temp_store setting is changed, all
# existing temporary tables, indices, triggers, and views are
# immediately deleted.

R-26406-03647-33657-03652-13422-62298-62842-50282 tcl slt th3 src

It is possible for the library compile-time C preprocessor symbol SQLITE_TEMP_STORE to override this pragma setting.

/* IMP: R-26406-03647 */
# EVIDENCE-OF: R-26406-03647 It is possible for the library compile-time
# C preprocessor symbol SQLITE_TEMP_STORE to override this pragma
# setting.

R-33570-18895-27619-21793-53436-58897-32599-21994 tcl slt th3 src

The following table summarizes the interaction of the SQLITE_TEMP_STORE preprocessor macro and the temp_store pragma:

SQLITE_TEMP_STORE PRAGMA
temp_store
Storage used for
TEMP tables and indices
0 any file
1 0 file
1 1 file
1 2 memory
2 0 memory
2 1 file
2 2 memory
3 any memory

/* IMP: R-33570-18895 */
# EVIDENCE-OF: R-33570-18895 The following table summarizes the
# interaction of the SQLITE_TEMP_STORE preprocessor macro and the
# temp_store pragma: SQLITE_TEMP_STORE PRAGMAtemp_store Storage used
# forTEMP tables and indices 0 any file 1 0 file 1 1 file 1 2 memory 2 0
# memory 2 1 file 2 2 memory 3 any memory

R-35764-01730-42752-16574-48638-21892-06176-19887 tcl slt th3 src

The user_version pragma will to get or set the value of the user-version integer at offset 60 in the database header.

th3/req1/pragma28.test:10

/* IMP: R-35764-01730 */
# EVIDENCE-OF: R-35764-01730 The user_version pragma will to get or set
# the value of the user-version integer at offset 60 in the database
# header.

R-41970-42722-40683-07259-21331-17616-49232-32709 tcl slt th3 src

This pragma queries or sets the write-ahead log auto-checkpoint interval.

/* IMP: R-41970-42722 */
# EVIDENCE-OF: R-41970-42722 This pragma queries or sets the write-ahead
# log auto-checkpoint interval.

R-56511-46089-40273-37812-64837-44245-01436-05433 tcl slt th3 src

When the write-ahead log is enabled (via the journal_mode pragma) a checkpoint will be run automatically whenever the write-ahead log equals or exceeds N pages in length.

/* IMP: R-56511-46089 */
# EVIDENCE-OF: R-56511-46089 When the write-ahead log is enabled (via
# the journal_mode pragma) a checkpoint will be run automatically
# whenever the write-ahead log equals or exceeds N pages in length.

R-48730-20169-40246-20306-06910-57968-05795-57037 tcl slt th3 src

Setting the auto-checkpoint size to zero or a negative value turns auto-checkpointing off.

/* IMP: R-48730-20169 */
# EVIDENCE-OF: R-48730-20169 Setting the auto-checkpoint size to zero or
# a negative value turns auto-checkpointing off.

R-19785-02834-31233-04888-56980-35561-24739-27802 tcl slt th3 src

This pragma is a wrapper around the sqlite3_wal_autocheckpoint() C interface.

/* IMP: R-19785-02834 */
# EVIDENCE-OF: R-19785-02834 This pragma is a wrapper around the
# sqlite3_wal_autocheckpoint() C interface.

R-30195-08968-16924-33658-13499-65099-07965-35563 tcl slt th3 src

All automatic checkpoints are PASSIVE.

/* IMP: R-30195-08968 */
# EVIDENCE-OF: R-30195-08968 All automatic checkpoints are PASSIVE.

R-41040-47502-07753-07518-58818-60449-29305-32446 tcl slt th3 src

Autocheckpointing is enabled by default with an interval of 1000 or SQLITE_DEFAULT_WAL_AUTOCHECKPOINT.

/* IMP: R-41040-47502 */
# EVIDENCE-OF: R-41040-47502 Autocheckpointing is enabled by default
# with an interval of 1000 or SQLITE_DEFAULT_WAL_AUTOCHECKPOINT.

R-64021-07698-52025-10986-56394-35084-34302-37940 tcl slt th3 src

If the write-ahead log is enabled (via the journal_mode pragma), this pragma causes a checkpoint operation to run on database database, or on all attached databases if database is omitted.

/* IMP: R-64021-07698 */
# EVIDENCE-OF: R-64021-07698 If the write-ahead log is enabled (via the
# journal_mode pragma), this pragma causes a checkpoint operation to run
# on database database, or on all attached databases if database is
# omitted.

R-14350-06824-15886-23716-53356-08607-64991-22845 tcl slt th3 src

If write-ahead log mode is disabled, this pragma is a harmless no-op.

th3/req1/pragma29.test:15

/* IMP: R-14350-06824 */
# EVIDENCE-OF: R-14350-06824 If write-ahead log mode is disabled, this
# pragma is a harmless no-op.

R-64531-59395-59522-15917-19627-46695-59010-51244 tcl slt th3 src

Invoking this pragma without an argument is equivalent to calling the sqlite3_wal_checkpoint() C interface.

th3/req1/checkpoint01.test:295

/* IMP: R-64531-59395 */
# EVIDENCE-OF: R-64531-59395 Invoking this pragma without an argument is
# equivalent to calling the sqlite3_wal_checkpoint() C interface.

R-47175-52442-38801-17858-62181-59243-23138-32376 tcl slt th3 src

Invoking this pragma with an argument is equivalent to calling the sqlite3_wal_checkpoint_v2() C interface with a 3rd parameter corresponding to the argument:

th3/req1/checkpoint01.test:238

/* IMP: R-47175-52442 */
# EVIDENCE-OF: R-47175-52442 Invoking this pragma with an argument is
# equivalent to calling the sqlite3_wal_checkpoint_v2() C interface with
# a 3rd parameter corresponding to the argument:

R-30105-58549-25183-38919-44198-38701-12397-38507 tcl slt th3 src

PASSIVE Checkpoint as many frames as possible without waiting for any database readers or writers to finish. Sync the db file if all frames in the log are checkpointed.

th3/req1/checkpoint01.test:226

/* IMP: R-30105-58549 */
# EVIDENCE-OF: R-30105-58549 PASSIVE Checkpoint as many frames as
# possible without waiting for any database readers or writers to
# finish. Sync the db file if all frames in the log are checkpointed.

R-45162-11578-30985-60631-31894-17735-12127-52197 tcl slt th3 src

This mode is the same as calling the sqlite3_wal_checkpoint() C interface.

th3/req1/checkpoint01.test:273

/* IMP: R-45162-11578 */
# EVIDENCE-OF: R-45162-11578 This mode is the same as calling the
# sqlite3_wal_checkpoint() C interface.

R-17186-50053-08160-14434-65470-31031-28806-57680 tcl slt th3 src

The busy-handler callback is never invoked in this mode.

th3/req1/checkpoint01.test:220

/* IMP: R-17186-50053 */
# EVIDENCE-OF: R-17186-50053 The busy-handler callback is never invoked
# in this mode.

R-11553-06434-51801-18684-33273-42427-03932-31278 tcl slt th3 src

FULL This mode blocks (invokes the busy-handler callback) until there is no database writer and all readers are reading from the most recent database snapshot. It then checkpoints all frames in the log file and syncs the database file.

th3/req1/checkpoint01.test:347

/* IMP: R-11553-06434 */
# EVIDENCE-OF: R-11553-06434 FULL This mode blocks (invokes the
# busy-handler callback) until there is no database writer and all
# readers are reading from the most recent database snapshot. It then
# checkpoints all frames in the log file and syncs the database file.

R-29747-05924-20663-28243-45594-47687-47105-58596 tcl slt th3 src

FULL blocks concurrent writers while it is running, but readers can proceed.

/* IMP: R-29747-05924 */
# EVIDENCE-OF: R-29747-05924 FULL blocks concurrent writers while it is
# running, but readers can proceed.

R-24306-14960-36438-04276-35826-43147-57622-43704 tcl slt th3 src

RESTART This mode works the same way as FULL with the addition that after checkpointing the log file it blocks (calls the busy-handler callback) until all readers are finished with the log file.

th3/req1/checkpoint01.test:399

/* IMP: R-24306-14960 */
# EVIDENCE-OF: R-24306-14960 RESTART This mode works the same way as
# FULL with the addition that after checkpointing the log file it blocks
# (calls the busy-handler callback) until all readers are finished with
# the log file.

R-42024-63312-61234-05516-46921-52814-12711-65369 tcl slt th3 src

RESTART blocks concurrent writers while it is running, but allowed readers to proceed.

/* IMP: R-42024-63312 */
# EVIDENCE-OF: R-42024-63312 RESTART blocks concurrent writers while it
# is running, but allowed readers to proceed.

R-09155-31313-04558-40761-11557-49623-19488-24497 tcl slt th3 src

TRUNCATE This mode works the same way as RESTART with the addition that the WAL file is truncated to zero bytes upon successful completion.

th3/req1/checkpoint01.test:455

/* IMP: R-09155-31313 */
# EVIDENCE-OF: R-09155-31313 TRUNCATE This mode works the same way as
# RESTART with the addition that the WAL file is truncated to zero bytes
# upon successful completion.

R-21320-14810-43799-05408-58279-13675-12785-56952 tcl slt th3 src

The wal_checkpoint pragma returns a single row with three integer columns.

th3/req1/pragma29.test:18

/* IMP: R-21320-14810 */
# EVIDENCE-OF: R-21320-14810 The wal_checkpoint pragma returns a single
# row with three integer columns.

R-40779-12285-51949-10144-43789-15381-05710-53892 tcl slt th3 src

The first column is usually 0 but will be 1 if a RESTART or FULL or TRUNCATE checkpoint was blocked from completing, for example because another thread or process was actively using the database.

th3/req1/pragma29.test:31

/* IMP: R-40779-12285 */
# EVIDENCE-OF: R-40779-12285 The first column is usually 0 but will be 1
# if a RESTART or FULL or TRUNCATE checkpoint was blocked from
# completing, for example because another thread or process was actively
# using the database.

R-39544-28997-13653-57291-53593-51283-21786-51117 tcl slt th3 src

In other words, the first column is 0 if the equivalent call to sqlite3_wal_checkpoint_v2() would have returned SQLITE_OK or 1 if the equivalent call would have returned SQLITE_BUSY.

/* IMP: R-39544-28997 */
# EVIDENCE-OF: R-39544-28997 In other words, the first column is 0 if
# the equivalent call to sqlite3_wal_checkpoint_v2() would have returned
# SQLITE_OK or 1 if the equivalent call would have returned SQLITE_BUSY.

R-08680-42661-24971-27030-06181-52917-24320-47746 tcl slt th3 src

The second column is the number of modified pages that have been written to the write-ahead log file.

/* IMP: R-08680-42661 */
# EVIDENCE-OF: R-08680-42661 The second column is the number of modified
# pages that have been written to the write-ahead log file.

R-33490-49513-63336-09770-17828-12612-45403-52100 tcl slt th3 src

The third column is the number of pages in the write-ahead log file that have been successfully moved back into the database file at the conclusion of the checkpoint.

/* IMP: R-33490-49513 */
# EVIDENCE-OF: R-33490-49513 The third column is the number of pages in
# the write-ahead log file that have been successfully moved back into
# the database file at the conclusion of the checkpoint.

R-26335-36429-33832-38639-19447-31976-61151-28783 tcl slt th3 src

The second and third column are -1 if there is no write-ahead log, for example if this pragma is invoked on a database connection that is not in WAL mode.

th3/req1/pragma29.test:21

/* IMP: R-26335-36429 */
# EVIDENCE-OF: R-26335-36429 The second and third column are -1 if there
# is no write-ahead log, for example if this pragma is invoked on a
# database connection that is not in WAL mode.

R-40123-37571-51972-63569-14797-25863-34192-34067 tcl slt th3 src

PRAGMA writable_schema = boolean;

When this pragma is on, the SQLITE_MASTER tables in which database can be changed using ordinary UPDATE, INSERT, and DELETE statements.

th3/req1/pragma30.test:18

/* IMP: R-40123-37571 */
# EVIDENCE-OF: R-40123-37571 PRAGMA writable_schema = boolean; When this
# pragma is on, the SQLITE_MASTER tables in which database can be
# changed using ordinary UPDATE, INSERT, and DELETE statements.

R-40798-35269-51954-12592-52405-01125-52034-02657 tcl slt th3 src

Warning: misuse of this pragma can easily result in a corrupt database file.

th3/req1/pragma30.test:39

/* IMP: R-40798-35269 */
# EVIDENCE-OF: R-40798-35269 Warning: misuse of this pragma can easily
# result in a corrupt database file.