Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in ".help" output from the shell. Ticket #914. (CVS 1978) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1ee3a787ada5abd460200d5812474161 |
User & Date: | drh 2004-09-24 12:50:03 |
Context
2004-09-24
| ||
19:39 | Improvements to the debugging code. (CVS 1979) check-in: bdc3bb07 user: drh tags: trunk | |
12:50 | Fix typo in ".help" output from the shell. Ticket #914. (CVS 1978) check-in: 1ee3a787 user: drh tags: trunk | |
12:48 | Avoid a segfault in sqlite3_bind_parameter_index when there are unnamed parameters. Ticket #918. (CVS 1977) check-in: 49f25ddf user: drh tags: trunk | |
Changes
Changes to src/shell.c.
8 8 ** May you find forgiveness for yourself and forgive others. 9 9 ** May you share freely, never taking more than you give. 10 10 ** 11 11 ************************************************************************* 12 12 ** This file contains code to implement the "sqlite" command line 13 13 ** utility for accessing SQLite databases. 14 14 ** 15 -** $Id: shell.c,v 1.113 2004/08/31 23:41:26 drh Exp $ 15 +** $Id: shell.c,v 1.114 2004/09/24 12:50:03 drh Exp $ 16 16 */ 17 17 #include <stdlib.h> 18 18 #include <string.h> 19 19 #include <stdio.h> 20 20 #include <assert.h> 21 21 #include "sqlite3.h" 22 22 #include <ctype.h> ................................................................................ 708 708 ".exit Exit this program\n" 709 709 ".explain ON|OFF Turn output mode suitable for EXPLAIN on or off.\n" 710 710 ".header(s) ON|OFF Turn display of headers on or off\n" 711 711 ".help Show this message\n" 712 712 ".import FILE TABLE Import data from FILE into TABLE\n" 713 713 ".indices TABLE Show names of all indices on TABLE\n" 714 714 ".mode MODE ?TABLE? Set output mode where MODE is on of:\n" 715 - " cvs Comma-separated values\n" 715 + " csv Comma-separated values\n" 716 716 " column Left-aligned columns. (See .width)\n" 717 717 " html HTML <table> code\n" 718 718 " insert SQL insert statements for TABLE\n" 719 719 " line One value per line\n" 720 720 " list Values delimited by .separator string\n" 721 721 " tabs Tab-separated values\n" 722 722 " tcl TCL list elements\n"