Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a bug on the quickstart.html page. CVSTrac tickets #2924 and #2925. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1b198ec17cc7733766d70220edd70849 |
User & Date: | drh 2008-02-04 18:18:24.000 |
Context
2008-02-06
| ||
14:42 | Documentation changes for the release of 3.5.6. (check-in: 0392ee1f6a user: drh tags: trunk) | |
2008-02-04
| ||
18:18 | Fix a bug on the quickstart.html page. CVSTrac tickets #2924 and #2925. (check-in: 1b198ec17c user: drh tags: trunk) | |
2008-02-02
| ||
19:33 | Change the way people subscript to the mailing list. (check-in: 72d99b15d6 user: drh tags: trunk) | |
Changes
Changes to pages/quickstart.in.
︙ | ︙ | |||
65 66 67 68 69 70 71 | <blockquote><pre> #include <stdio.h> #include <sqlite3.h> static int callback(void *NotUsed, int argc, char **argv, char **azColName){ int i; for(i=0; i<argc; i++){ | | | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | <blockquote><pre> #include <stdio.h> #include <sqlite3.h> static int callback(void *NotUsed, int argc, char **argv, char **azColName){ int i; for(i=0; i<argc; i++){ printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL"); } printf("\n"); return 0; } int main(int argc, char **argv){ sqlite3 *db; |
︙ | ︙ |