Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c33795 char *zHistory; local
33807 zHistory = getenv("SQLITE_HISTORY");
33808 if( zHistory ){
33809 zHistory = strdup(zHistory);
33812 if( (zHistory = malloc(nHistory))!=0 ){
33813 sqlite3_snprintf(nHistory, zHistory,"%s/.sqlite_history", zHome);
33816 if( zHistory ){ shell_read_history(zHistory); }
33826 if( zHistory ){
33828 shell_write_history(zHistory);
33829 free(zHistory);