emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql b447994514 033/427: Change table type recommendati


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql b447994514 033/427: Change table type recommendation.
Date: Tue, 13 Dec 2022 02:59:25 -0500 (EST)

branch: elpa/emacsql
commit b4479945141462bad282f4b81ddf397c01986705
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@nullprogram.com>

    Change table type recommendation.
---
 README.md  | 8 ++++----
 emacsql.el | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 3f26389b00..f288c265ee 100644
--- a/README.md
+++ b/README.md
@@ -19,17 +19,17 @@ Requires Emacs 24 or later.
 (defvar db (emacsql-connect "company.db"))
 
 ;; Create a table. A table identifier can be any kind of lisp value.
-(emacsql-create db :employees [name id salary])
+(emacsql-create db 'employees [name id salary])
 
 ;; Or optionally provide column constraints.
-(emacsql-create db :employees [name (id integer :unique) (salary float)])
+(emacsql-create db 'employees [name (id integer :unique) (salary float)])
 
 ;; Insert some data:
-(emacsql-insert db :employees ["Jeff"  1000 60000.0]
+(emacsql-insert db 'employees ["Jeff"  1000 60000.0]
                               ["Susan" 1001 64000.0])
 
 ;; The high-level SELECT interface is a work in progress.
-(emacsql-select-raw db (concat "SELECT name, id FROM ':employees' "
+(emacsql-select-raw db (concat "SELECT name, id FROM employees "
                                "WHERE salary > 60000;"))
 ;; => (("Susan" 1001))
 ```
diff --git a/emacsql.el b/emacsql.el
index fa75f38ef5..4e2dcb3eec 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -24,7 +24,7 @@
 ;; habits! :-)
 
 ;; Table identifiers can be any lisp object: string, symbol, etc. I
-;; suggest using a keyword. Use `emacsql-create' to create a table.
+;; suggest using a symbol. Use `emacsql-create' to create a table.
 
 ;;     (emacsql-create db :employees [name id salary])
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]