Documentation Source Text

Check-in [966ccc894f]
Login

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

Overview
Comment:Fix typos on th enew dbpage.html page.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 966ccc894f2e10588d864c2cbfd47c21fa3a2ad65cda00c43610bb92cfdfa515
User & Date: drh 2018-09-28 20:59:10.510
Context
2018-09-28
23:43
Initial documentation for the MEMSTAT virtual table. (check-in: 6f48ca52cf user: drh tags: trunk)
20:59
Fix typos on th enew dbpage.html page. (check-in: 966ccc894f user: drh tags: trunk)
20:51
Add documentation on the sqlite_dbpage virtual table. (check-in: 86e3ea9245 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to pages/dbpage.in.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<title>The SQLITE_DBPAGE Virtual Table</title>
<tcl>hd_keywords sqlite_dbpage {SQLITE_DBPAGE virtual table} \
        {the SQLITE_DBPAGE extension}</tcl>
<fancy_format>

<h1>Overview</h1>

<p>
The SQLITE_DBPAGE extension implements an [eponymous-only virtual table] that
provides direct access to the underlying database file by interacting directly
with the page.  SQLITE_DBPAGE is capable of both reading and writing any
page of the database.  Because interaction is through the pager layer, all
changes are transactional.
</p>

<p>
<b>Warning:</b> writing to the SQLITE_DBPAGE virtual table can very easily
cause unrecoverably database corruption.  Do not allow untrusted components









|
|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<title>The SQLITE_DBPAGE Virtual Table</title>
<tcl>hd_keywords sqlite_dbpage {SQLITE_DBPAGE virtual table} \
        {the SQLITE_DBPAGE extension}</tcl>
<fancy_format>

<h1>Overview</h1>

<p>
The SQLITE_DBPAGE extension implements an [eponymous-only virtual table] that
provides direct access to the underlying database file by interacting
with the pager.  SQLITE_DBPAGE is capable of both reading and writing any
page of the database.  Because interaction is through the pager layer, all
changes are transactional.
</p>

<p>
<b>Warning:</b> writing to the SQLITE_DBPAGE virtual table can very easily
cause unrecoverably database corruption.  Do not allow untrusted components