Function: sql-comint-informix

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

Signature

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

Documentation

Create comint buffer and connect to Informix.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defun sql-comint-informix (product options &optional buf-name)
  "Create comint buffer and connect to Informix."
  ;; username and password are ignored.
  (let ((db (if (string= "" sql-database)
		"-"
	      (if (string= "" sql-server)
		  sql-database
		(concat sql-database "@" sql-server)))))
    (sql-comint product (append `(,db "-") options) buf-name)))