Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in pragma.html. "RESTART" is a valid parameter to use with "PRAGMA wal_checkpoint", not "RESET". |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
486f3e085d48ef45628056853c92b8da |
User & Date: | dan 2011-04-07 11:14:21 |
Context
2011-04-07
| ||
18:17 | Fix a typo in SQLITE_OMIT_UNIQUE_ENFORCEMENT. check-in: 8870b75865 user: drh tags: trunk | |
11:14 | Fix a typo in pragma.html. "RESTART" is a valid parameter to use with "PRAGMA wal_checkpoint", not "RESET". check-in: 486f3e085d user: dan tags: trunk | |
2011-04-06
| ||
19:40 | Fix a typo in the change log for 3.7.6. check-in: 055d224c39 user: drh tags: trunk | |
Changes
Changes to pages/pragma.in.
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 |
information.</p>
}
Pragma wal_checkpoint {
<p><b>PRAGMA </b><i>database</i><b>.wal_checkpoint;</b><br>
<b>PRAGMA </b><i>database</i><b>.wal_checkpoint(PASSIVE);</b><br>
<b>PRAGMA </b><i>database</i><b>.wal_checkpoint(FULL);</b><br>
<b>PRAGMA </b><i>database</i><b>.wal_checkpoint(RESET);</b>
</p>
<p>^If the [write-ahead log] is enabled (via the [journal_mode pragma]),
this pragma causes a checkpoint operation to run on database
<i>database</i>, or on all attached databases if <i>database</i>
is omitted. ^If [write-ahead log] is disabled, this pragma is a
harmless no-op.</p>
|
| |
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 |
information.</p>
}
Pragma wal_checkpoint {
<p><b>PRAGMA </b><i>database</i><b>.wal_checkpoint;</b><br>
<b>PRAGMA </b><i>database</i><b>.wal_checkpoint(PASSIVE);</b><br>
<b>PRAGMA </b><i>database</i><b>.wal_checkpoint(FULL);</b><br>
<b>PRAGMA </b><i>database</i><b>.wal_checkpoint(RESTART);</b>
</p>
<p>^If the [write-ahead log] is enabled (via the [journal_mode pragma]),
this pragma causes a checkpoint operation to run on database
<i>database</i>, or on all attached databases if <i>database</i>
is omitted. ^If [write-ahead log] is disabled, this pragma is a
harmless no-op.</p>
|