Searched refs:zHistory (Results 1 – 1 of 1) sorted by relevance
37127 char *zHistory; in main() local37138 zHistory = getenv("SQLITE_HISTORY"); in main()37139 if( zHistory ){ in main()37140 zHistory = sqlite3_mprintf("%s", zHistory); in main()37141 shell_check_oom(zHistory); in main()37143 zHistory = find_xdg_file("XDG_STATE_HOME", in main()37146 if( 0==zHistory && (zHome = find_home_dir(0))!=0 ){ in main()37147 zHistory = sqlite3_mprintf("%s/.sqlite_history", zHome); in main()37148 shell_check_oom(zHistory); in main()37151 if( zHistory ){ shell_read_history(zHistory); } in main()[all …]