Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Identify the SQLite version meta-value entry in the db-header output of showdb. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
245d934b72cbc6e897193e7892195b65 |
User & Date: | drh 2010-04-26 17:30:53.000 |
Context
2010-04-26
| ||
17:36 | Change the default_cache_size pragma to always store a positive value. (check-in: 36fb2cae75 user: drh tags: trunk) | |
17:30 | Identify the SQLite version meta-value entry in the db-header output of showdb. (check-in: 245d934b72 user: drh tags: trunk) | |
16:47 | Further enhancements to the showdb utility: A page number followed by "b" causes a btree decoding to occur on the page. (check-in: 2ff824e58c user: drh tags: trunk) | |
Changes
Changes to tool/showdb.c.
︙ | ︙ | |||
166 167 168 169 170 171 172 | print_decode_line(aData, 68, 4, "meta[7]"); print_decode_line(aData, 72, 4, "meta[8]"); print_decode_line(aData, 76, 4, "meta[9]"); print_decode_line(aData, 80, 4, "meta[10]"); print_decode_line(aData, 84, 4, "meta[11]"); print_decode_line(aData, 88, 4, "meta[12]"); print_decode_line(aData, 92, 4, "meta[13]"); | | | 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | print_decode_line(aData, 68, 4, "meta[7]"); print_decode_line(aData, 72, 4, "meta[8]"); print_decode_line(aData, 76, 4, "meta[9]"); print_decode_line(aData, 80, 4, "meta[10]"); print_decode_line(aData, 84, 4, "meta[11]"); print_decode_line(aData, 88, 4, "meta[12]"); print_decode_line(aData, 92, 4, "meta[13]"); print_decode_line(aData, 96, 4, "SQLite version number"); } /* ** Create a description for a single cell. */ static int describeCell(unsigned char cType, unsigned char *a, char **pzDesc){ int i; |
︙ | ︙ |