Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a documentation page for compilation options. Still some work to go. (CVS 2117) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5efa2d2a602c3b7249c4e6701e97b16b |
User & Date: | danielk1977 2004-11-20 06:05:56.000 |
Context
2004-11-20
| ||
08:17 | Documentation for REINDEX and ALTER TABLE commands. (CVS 2118) (check-in: aceaa5f6e9 user: danielk1977 tags: trunk) | |
06:05 | Add a documentation page for compilation options. Still some work to go. (CVS 2117) (check-in: 5efa2d2a60 user: danielk1977 tags: trunk) | |
2004-11-19
| ||
11:59 | Split up the lang.html page into a seperate page for each command. (CVS 2116) (check-in: ea315668e5 user: danielk1977 tags: trunk) | |
Changes
Changes to main.mk.
︙ | |||
480 481 482 483 484 485 486 487 488 489 490 491 492 493 | 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | + + + | vdbe.html: $(TOP)/www/vdbe.tcl tclsh $(TOP)/www/vdbe.tcl >vdbe.html version3.html: $(TOP)/www/version3.tcl tclsh $(TOP)/www/version3.tcl >version3.html compile.html: $(TOP)/www/compile.tcl tclsh $(TOP)/www/compile.tcl >compile.html # Files to be published on the website. # DOC = \ arch.html \ arch.png \ c_interface.html \ |
︙ | |||
517 518 519 520 521 522 523 | 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | - + + | quickstart.html \ speed.html \ sqlite.gif \ sqlite.html \ support.html \ tclsqlite.html \ vdbe.html \ |
︙ |
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. ** |
︙ | |||
445 446 447 448 449 450 451 | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | - - + + | ** a log file of all SQL executed against a database. */ void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*); /* ** This routine configures a callback function - the progress callback - that ** is invoked periodically during long running calls to sqlite3_exec(), |
︙ |
Added www/compile.tcl.