Variable: sql-password-wallet
sql-password-wallet is a customizable variable defined in sql.el.gz.
Value
nil
Documentation
Identification of the password wallet.
See sql-password-search-wallet-function to understand how this value
is used to locate the password wallet.
This variable was added, or its default value changed, in Emacs 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defcustom sql-password-wallet
(let (wallet w)
(dolist (ext '(".json.gpg" ".gpg" ".json" "") wallet)
(unless wallet
(setq w (locate-user-emacs-file (concat "sql-wallet" ext)
(concat ".sql-wallet" ext)))
(when (file-exists-p w)
(setq wallet (list w))))))
"Identification of the password wallet.
See `sql-password-search-wallet-function' to understand how this value
is used to locate the password wallet."
:type (plist-get (symbol-plist 'auth-sources) 'custom-type)
:version "27.1")