Function: hypb:sqlite-p
hypb:sqlite-p is an autoloaded and byte-compiled function defined in
hypb.el.
Signature
(hypb:sqlite-p)
Documentation
Return non-nil if Emacs has available SQLite support.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
;;;###autoload
(defun hypb:sqlite-p ()
"Return non-nil if Emacs has available SQLite support."
(if (fboundp 'sqlite-available-p)
(sqlite-available-p)
(fboundp 'sqlite-open)))