Documentation Source Text

Check-in [1445db0dec]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add documentation for SQLITE_DEFAULT_MEMSTATUS to compile.html.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1445db0decff5d37d144ef5dc5198a4804ad9c1e
User & Date: dan 2008-09-04 17:09:01.000
Context
2008-09-09
13:48
Work on requirements in fileio.html. (check-in: c3a0f6d745 user: dan tags: trunk)
2008-09-04
17:09
Add documentation for SQLITE_DEFAULT_MEMSTATUS to compile.html. (check-in: 1445db0dec user: dan tags: trunk)
09:26
Enhance the description of the SQLITE_ENABLE_LOCKING_STYLE option in compile.html. (check-in: 523d4bcf07 user: dan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to pages/compile.in.
63
64
65
66
67
68
69







70
71
72
73
74
75
76
  be able to read and write database files created by newer versions
  of SQLite, the default file format is set to 1 for maximum
  compatability.

  The file format for a new database can be set at runtime using
  the [PRAGMA legacy_file_format] command.
}








COMPILE_OPTION {SQLITE_DEFAULT_PAGE_SIZE=<i>&lt;bytes&gt;</i>} {
  This macro is used to set the default page-size used when a
  database is created. The value assigned must be a power of 2. The
  default value is 1024. The compile-time default may be overridden at 
  runtime by the [PRAGMA page_size] command.
}







>
>
>
>
>
>
>







63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  be able to read and write database files created by newer versions
  of SQLite, the default file format is set to 1 for maximum
  compatability.

  The file format for a new database can be set at runtime using
  the [PRAGMA legacy_file_format] command.
}

COMPILE_OPTION {SQLITE_DEFAULT_MEMSTATUS=<i>&lt;1 or 0&gt;</i>} {
  This macro is used to determine whether or not the features enabled and
  disabled using the SQLITE_CONFIG_MEMSTATUS argument to [sqlite3_config()]
  are available by default. The default value is 1 ([SQLITE_CONFIG_MEMSTATUS]
  related features enabled).
}

COMPILE_OPTION {SQLITE_DEFAULT_PAGE_SIZE=<i>&lt;bytes&gt;</i>} {
  This macro is used to set the default page-size used when a
  database is created. The value assigned must be a power of 2. The
  default value is 1024. The compile-time default may be overridden at 
  runtime by the [PRAGMA page_size] command.
}