Function: sql-comint-vertica

sql-comint-vertica is a byte-compiled function defined in sql.el.gz.

Signature

(sql-comint-vertica PRODUCT OPTIONS &optional BUF-NAME)

Documentation

Create comint buffer and connect to Vertica.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-comint-vertica (product options &optional buf-name)
  "Create comint buffer and connect to Vertica."
  (sql-comint product
              (nconc
               (and (not (string= "" sql-server))
                    (list "-h" sql-server))
               (and (not (string= "" sql-database))
                    (list "-d" sql-database))
               (and (not (string= "" sql-password))
                    (list "-w" sql-password))
               (and (not (string= "" sql-user))
                    (list "-U" sql-user))
               options)
              buf-name))