Function: sql-comint-ingres
sql-comint-ingres is a byte-compiled function defined in sql.el.gz.
Signature
(sql-comint-ingres PRODUCT OPTIONS &optional BUF-NAME)
Documentation
Create comint buffer and connect to Ingres.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-comint-ingres (product options &optional buf-name)
"Create comint buffer and connect to Ingres."
;; username and password are ignored.
(sql-comint product
(append (if (string= "" sql-database)
nil
(list sql-database))
options)
buf-name))