Variable: sql-product
sql-product is a customizable variable defined in sql.el.gz.
Value
ansi
Documentation
Select the SQL database product used.
This allows highlighting buffers properly when you open them.
Probably introduced at or before Emacs version 22.1.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defcustom sql-product 'ansi
"Select the SQL database product used.
This allows highlighting buffers properly when you open them."
:type `(choice
,@(mapcar (lambda (prod-info)
`(const :tag
,(or (plist-get (cdr prod-info) :name)
(capitalize (symbol-name (car prod-info))))
,(car prod-info)))
sql-product-alist))
:safe 'symbolp)