Variable: sql-sqlite-program
sql-sqlite-program is a customizable variable defined in sql.el.gz.
Value
"sqlite"
Documentation
Command to start SQLite.
Starts sql-interactive-mode after doing some setup.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
;; Customization for SQLite
(defcustom sql-sqlite-program (or (executable-find "sqlite3")
(executable-find "sqlite")
"sqlite")
"Command to start SQLite.
Starts `sql-interactive-mode' after doing some setup."
:type 'file)