diff options
author | Thanos Apollo <[email protected]> | 2024-01-10 08:55:55 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-10 08:55:55 +0200 |
commit | fadc296ccca067a22a929524f62f5007de0d7e1f (patch) | |
tree | 9d950d7d3d8883f6cd5fb3c2a4082b1a9e6e27ad /gnosis.el | |
parent | eb3fb50be9869d21099b6006d6ab05fd22e6ddf8 (diff) |
gnosis-select & gnosis--insert-into: Update docstrings
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -122,7 +122,9 @@ (cl-defun gnosis-select (value table &optional (restrictions '1=1)) - "Select VALUE from TABLE, optionally with RESTRICTIONS." + "Select VALUE from TABLE, optionally with RESTRICTIONS. + +Use `gnosis-db-init' to initialize `gnosis-db' and create essential directories." (gnosis-db-init) (emacsql gnosis-db `[:select ,value :from ,table :where ,restrictions])) @@ -135,7 +137,9 @@ (emacsql gnosis-db `[:drop-table ,table])) (cl-defun gnosis--insert-into (table values) - "Insert VALUES to TABLE." + "Insert VALUES to TABLE. + +Use `gnosis-db-init' to initialize `gnosis-db' and create essential directories." (gnosis-db-init) (emacsql gnosis-db `[:insert :into ,table :values ,values])) |