Home
last modified time | relevance | path

Searched refs:zHistory (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/sqlite3/
H A Dshell.c19492 char *zHistory; local
19505 zHistory = getenv("SQLITE_HISTORY");
19506 if( zHistory ){
19507 zHistory = strdup(zHistory);
19510 if( (zHistory = malloc(nHistory))!=0 ){
19511 sqlite3_snprintf(nHistory, zHistory,"%s/.sqlite_history", zHome);
19514 if( zHistory ){ shell_read_history(zHistory); }
19522 if( zHistory ){
19524 shell_write_history(zHistory);
19525 free(zHistory);