Function: sql-show-sqli-buffer
sql-show-sqli-buffer is an interactive and byte-compiled function
defined in sql.el.gz.
Signature
(sql-show-sqli-buffer)
Documentation
Display the current SQLi buffer.
This is the buffer SQL strings are sent to.
It is stored in the variable sql-buffer.
I
See also sql-help on how to create such a buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-show-sqli-buffer ()
"Display the current SQLi buffer.
This is the buffer SQL strings are sent to.
It is stored in the variable `sql-buffer'.
I
See also `sql-help' on how to create such a buffer."
(interactive)
(unless (and sql-buffer (buffer-live-p (get-buffer sql-buffer))
(get-buffer-process sql-buffer))
(sql-set-sqli-buffer))
(display-buffer sql-buffer))