DEFUN ("sqlite-load-extension", Fsqlite_load_extension,
Ssqlite_load_extension, 2, 2, 0,
- doc: /* Load a an SQlite module into DB.
+ doc: /* Load an SQlite module into DB.
MODULE should be the file name of an SQlite module .so file. */)
(Lisp_Object db, Lisp_Object module)
{
}
DEFUN ("sqlite-more-p", Fsqlite_more_p, Ssqlite_more_p, 1, 1, 0,
- doc: /* Say whether there's any further results in SET. */)
+ doc: /* Say whether there are any further results in SET. */)
(Lisp_Object set)
{
check_sqlite (set, true);
(sqlite-select db "select * from test1" nil 'full)
'(("col1" "col2" "col3" "col4") ("foo" 2 9.45 "bar"))))))
-;; (setq db (sqlite-open))
-
(ert-deftest sqlite-set ()
(skip-unless (sqlite-available-p))
(let ((db (sqlite-open))