Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix another minor typo in the vtable docs. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a93d66e4124fc1514d81c60068af3cc9 |
User & Date: | mistachkin 2013-06-21 08:00:09.192 |
Context
2013-06-21
| ||
19:06 | Add documentation for the fts4 notindexed option. (check-in: 968222aa1c user: dan tags: trunk) | |
08:00 | Fix another minor typo in the vtable docs. (check-in: a93d66e412 user: mistachkin tags: trunk) | |
2013-05-29
| ||
06:57 | Fix minor typo in the virtual table documentation for xCreate and xConnect. (check-in: 44d1e198ca user: mistachkin tags: trunk) | |
Changes
Changes to pages/vtab.in.
︙ | ︙ | |||
768 769 770 771 772 773 774 | <blockquote><pre> int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, int argc, sqlite3_value **argv); </pre></blockquote> <p>This method begins a search of a virtual table. The first argument is a cursor opened by [sqlite3_module.xOpen | xOpen]. | | | 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 | <blockquote><pre> int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, int argc, sqlite3_value **argv); </pre></blockquote> <p>This method begins a search of a virtual table. The first argument is a cursor opened by [sqlite3_module.xOpen | xOpen]. The next two arguments define a particular search index previously chosen by [xBestIndex]. The specific meanings of idxNum and idxStr are unimportant as long as xFilter and xBestIndex agree on what that meaning is. <p>The xBestIndex function may have requested the values of certain expressions using the aConstraintUsage[].argvIndex values of the [sqlite3_index_info] structure. |
︙ | ︙ |