Function: sql-send-paragraph
sql-send-paragraph is an interactive and byte-compiled function
defined in sql.el.gz.
Signature
(sql-send-paragraph)
Documentation
Send the current paragraph to the SQL process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-send-paragraph ()
"Send the current paragraph to the SQL process."
(interactive)
(let ((start (save-excursion
(backward-paragraph)
(point)))
(end (save-excursion
(forward-paragraph)
(point))))
(sql-send-region start end)))