Index: src/shell.c ================================================================== --- src/shell.c +++ src/shell.c @@ -10,11 +10,11 @@ ** ************************************************************************* ** This file contains code to implement the "sqlite" command line ** utility for accessing SQLite databases. ** -** $Id: shell.c,v 1.182 2008/06/26 10:41:19 danielk1977 Exp $ +** $Id: shell.c,v 1.183 2008/06/28 11:29:23 mihailim Exp $ */ #include #include #include #include @@ -2060,11 +2060,12 @@ char *zHome; char *zHistory = 0; int nHistory; printf( "SQLite version %s\n" - "Enter \".help\" for instructions\n", + "Enter \".help\" for instructions\n" + "Enter SQL statements terminated with a \";\"\n", sqlite3_libversion() ); zHome = find_home_dir(); if( zHome && (zHistory = malloc(nHistory = strlen(zHome)+20))!=0 ){ sqlite3_snprintf(nHistory, zHistory,"%s/.sqlite_history", zHome);