Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an obsolete comment on the sqlite3_namelist() function implementation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | experimental-namelist |
Files: | files | file ages | folders |
SHA3-256: |
f4229857a10d4f605ba67e18786c9ddf |
User & Date: | drh 2017-07-07 14:54:38.736 |
Context
2017-07-07
| ||
14:54 | Fix an obsolete comment on the sqlite3_namelist() function implementation. (Closed-Leaf check-in: f4229857a1 user: drh tags: experimental-namelist) | |
2017-07-06
| ||
22:40 | Always load the schema before starting tab-completion. (check-in: 907fd3aab6 user: drh tags: experimental-namelist) | |
Changes
Changes to src/tokenize.c.
︙ | ︙ | |||
646 647 648 649 650 651 652 | ** specifically what kinds of names should be returned. All names ** returned must begin with zPrefix. ** ** The returned list is from a single memory allocation. The caller owns ** the allocation and should release it using sqlite3_free() when it has ** finished using the list. ** | | | | 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | ** specifically what kinds of names should be returned. All names ** returned must begin with zPrefix. ** ** The returned list is from a single memory allocation. The caller owns ** the allocation and should release it using sqlite3_free() when it has ** finished using the list. ** ** The returned list is an array of pointers to strings. The list is ** terminated by a single NULL pointer. */ char **sqlite3_namelist( sqlite3 *db, /* Database from which to extract names */ const char *zPrefix, /* Only extract names matching this prefix */ int typeMask, /* Mask of the types of names to extract */ int *pCount /* Write the number of names here */ ){ |
︙ | ︙ |