Change the default command prompts

This commit is contained in:
Justine Tunney 2022-04-06 06:56:11 -07:00
parent ce9bdbb0bf
commit 82f2e758c7
6 changed files with 18 additions and 9 deletions

View file

@ -1,3 +1,4 @@
/* clang-format off */
/* DO NOT EDIT!
** This file is automatically generated by the script in the canonical
** SQLite source tree at tool/mkshellc.tcl. That script combines source
@ -34,7 +35,6 @@
/* This needs to come before any includes for MSVC compiler */
#define _CRT_SECURE_NO_WARNINGS
#endif
/* clang-format off */
/*
** Determine if we are dealing with WinRT, which provides only a subset of
@ -20521,8 +20521,8 @@ static void main_init(ShellState *data) {
sqlite3_config(SQLITE_CONFIG_URI, 1);
sqlite3_config(SQLITE_CONFIG_LOG, shellLog, data);
sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
sqlite3_snprintf(sizeof(mainPrompt), mainPrompt,"sqlite> ");
sqlite3_snprintf(sizeof(continuePrompt), continuePrompt," ...> ");
sqlite3_snprintf(sizeof(mainPrompt), mainPrompt,"sqlite>: ");
sqlite3_snprintf(sizeof(continuePrompt), continuePrompt," ...>: ");
}
/*