Function: sql-send-region
sql-send-region is an interactive and byte-compiled function defined
in sql.el.gz.
Signature
(sql-send-region START END)
Documentation
Send a region to the SQL process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-send-region (start end)
"Send a region to the SQL process."
(interactive "r")
(sql-send-string (buffer-substring-no-properties start end)))