Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a formatting problem in rescode.html. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.31 |
Files: | files | file ages | folders |
SHA3-256: |
d35032eb7ff2018bc48026a705440a46 |
User & Date: | drh 2020-02-26 11:09:27.393 |
Context
2020-03-03
| ||
18:22 | Fix documentation typo in fileformat.html. (check-in: 5dacf1a573 user: drh tags: branch-3.31) | |
2020-02-26
| ||
11:09 | Fix a formatting problem in rescode.html. (check-in: d35032eb7f user: drh tags: branch-3.31) | |
2020-02-22
| ||
12:54 | Fix a typo in the when-to-use page. (check-in: ee17d2f67b user: drh tags: branch-3.31) | |
Changes
Changes to pages/rescode.in.
︙ | ︙ | |||
818 819 820 821 822 823 824 | incr nExtCode set ext_rc($name) $val } } </tcl> <h1>Primary Result Code List</h1> | | | | 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 | incr nExtCode set ext_rc($name) $val } } </tcl> <h1>Primary Result Code List</h1> <p>The <tcl>hd_puts $nPrimCode</tcl> result codes are [result code definitions|defined in sqlite3.h] and are listed in alphabetical order below: <tcl> set lx {} foreach name [lsort [array names prim_rc]] { lappend lx [list $name "$name ($prim_rc($name))" 0] } hd_list_of_links {} 320 $lx hd_fragment extrc {extended result code} {extended result codes} \ {extended error code} {extended error codes} </tcl> <h1>Extended Result Code List</h1> <p>The <tcl>hd_puts $nExtCode</tcl> extended result codes are [extended result code definitions|defined in sqlite3.h] and are listed in alphabetical order below: <tcl> set lx {} foreach name [lsort [array names ext_rc]] { lappend lx [list $name "$name ($ext_rc($name))" 0] |
︙ | ︙ |