Function: sql-comint-interbase
sql-comint-interbase is a byte-compiled function defined in sql.el.gz.
Signature
(sql-comint-interbase PRODUCT OPTIONS &optional BUF-NAME)
Documentation
Create comint buffer and connect to Interbase.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-comint-interbase (product options &optional buf-name)
"Create comint buffer and connect to Interbase."
;; Put all parameters to the program (if defined) in a list and call
;; make-comint.
(let ((params
(append
(if (not (string= "" sql-database))
(list sql-database)) ; Add to the front!
(if (not (string= "" sql-password))
(list "-p" sql-password))
(if (not (string= "" sql-user))
(list "-u" sql-user))
options)))
(sql-comint product params buf-name)))