Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates comments in sqlite.h.in that describe the destructor parameter to sqlite3_bind_.... (CVS 1842) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
166eb60614d958674469d6661c694aa5 |
User & Date: | drh 2004-07-21 15:21:36.000 |
Context
2004-07-22
| ||
01:19 | Initial implementation of variable page sizes and the temp_store pragma. (CVS 1843) (check-in: 4cf6e9db75 user: drh tags: trunk) | |
2004-07-21
| ||
15:21 | Updates comments in sqlite.h.in that describe the destructor parameter to sqlite3_bind_.... (CVS 1842) (check-in: 166eb60614 user: drh tags: trunk) | |
14:54 | Update the TCL API documentation. (CVS 1841) (check-in: df306ad9ee user: drh tags: trunk) | |
Changes
Changes to src/sqlite.h.in.
︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - + | ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the SQLite library ** presents to client programs. ** |
︙ | |||
599 600 601 602 603 604 605 | 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | - - - - + + + + + + + | ** using the routines listed below. ** ** In every case, the first parameter is a pointer to the sqlite3_stmt ** structure returned from sqlite3_prepare(). The second parameter is the ** index of the wildcard. The first "?" has an index of 1. ":N:" wildcards ** use the index N. ** |
︙ |