Function: sqlite-mode

sqlite-mode is a byte-compiled function defined in sqlite-mode.el.gz.

Signature

(sqlite-mode)

Documentation

This mode lists the contents of an .sqlite3 file.

In addition to any hooks its parent mode special-mode might have run, this mode runs the hook sqlite-mode-hook, as the final or penultimate step during initialization.

DEL sqlite-mode-delete
RET sqlite-mode-list-data
c sqlite-mode-list-columns
g sqlite-mode-list-tables

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/sqlite-mode.el.gz
(define-derived-mode sqlite-mode special-mode "Sqlite"
  "This mode lists the contents of an .sqlite3 file."
  :interactive nil
  (buffer-disable-undo)
  (setq-local buffer-read-only t
              truncate-lines t))