1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Added reminder message to terminate SQL statements with a semicolon on shell startup. This closes #3099. (CVS 5325)

FossilOrigin-Name: 0ab0b030dea03ec6693358b733329328828cf802
This commit is contained in:
mihailim
2008-06-28 11:29:22 +00:00
parent e339d65a89
commit 65df9db007
3 changed files with 11 additions and 10 deletions

View File

@@ -12,7 +12,7 @@
** 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 <stdlib.h>
#include <string.h>
@@ -2062,7 +2062,8 @@ int main(int argc, char **argv){
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();