Depends on your system I think. Here is what is contained in shell.c readline.h is the thing making all those history and similar things you use in your linux command line shell available.
#ifdef HAVE_EDITLINE # include <editline/editline.h> #endif #if defined(HAVE_READLINE) && HAVE_READLINE==1 # include <readline/readline.h> # include <readline/history.h> #endif ________________________________ From: Roman Fleysher <[email protected]> To: General Discussion of SQLite Database <[email protected]> Sent: Friday, May 17, 2013 11:49 AM Subject: [sqlite] sqlite shell: arrow keys Dear SQLiters, I am new to SQLite and learning it (and SQL) using shell. It would make life easier if arrow keys on keyboard could be used to scroll through command history and along command for editing. Is there a way to enable this? Thank you, Roman _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

