Function: sql-send-line-and-next

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

Signature

(sql-send-line-and-next)

Documentation

Send the current line to the SQL process and go to the next line.

Probably introduced at or before Emacs version 25.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-send-line-and-next ()
  "Send the current line to the SQL process and go to the next line."
  (interactive)
  (sql-send-region (line-beginning-position 1) (line-beginning-position 2))
  (beginning-of-line 2)
  (while (forward-comment 1)))  ; skip all comments and whitespace