Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix documentation to show the correct return type from sqlite3_db_handle(). Ticket #1716. (CVS 3132) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f4fb047d0a0939ab6a25b75999501f59 |
User & Date: | drh 2006-03-13 14:31:39.000 |
Context
2006-03-13
| ||
15:06 | Get parserless builds working again. (CVS 3133) (check-in: 5ddc09a5e4 user: drh tags: trunk) | |
14:31 | Fix documentation to show the correct return type from sqlite3_db_handle(). Ticket #1716. (CVS 3132) (check-in: f4fb047d0a user: drh tags: trunk) | |
14:28 | Changes to get the Serialized Statement Extension working again. (CVS 3131) (check-in: 255fdbe6fa user: drh tags: trunk) | |
Changes
Changes to www/capi3ref.tcl.
|
| | | 1 2 3 4 5 6 7 8 | set rcsid {$Id: capi3ref.tcl,v 1.35 2006/03/13 14:31:39 drh Exp $} source common.tcl header {C/C++ Interface For SQLite Version 3} puts { <h2>C/C++ Interface For SQLite Version 3</h2> } proc api {name prototype desc {notused x}} { |
︙ | ︙ | |||
1292 1293 1294 1295 1296 1297 1298 | api {} { int sqlite3_clear_bindings(sqlite3_stmt*); } { Set all the parameters in the compiled SQL statement back to NULL. } api {} { | | | 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 | api {} { int sqlite3_clear_bindings(sqlite3_stmt*); } { Set all the parameters in the compiled SQL statement back to NULL. } api {} { sqlite3 *sqlite3_db_handle(sqlite3_stmt*); } { Return the sqlite3* database handle to which the prepared statement given in the argument belongs. This is the same database handle that was the first argument to the sqlite3_prepare() that was used to create the statement in the first place. } |
︙ | ︙ |