Function: sql-send-buffer

sql-send-buffer is an interactive and byte-compiled function defined in sql.el.gz.

Signature

(sql-send-buffer)

Documentation

Send the buffer contents to the SQL process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-send-buffer ()
  "Send the buffer contents to the SQL process."
  (interactive)
  (sql-send-region (point-min) (point-max)))