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

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

[nongnu] elpa/emacsql b3110c9fa9 018/427: Rename .sqlite to .db.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql b3110c9fa9 018/427: Rename .sqlite to .db.
Date: Tue, 13 Dec 2022 02:59:24 -0500 (EST)

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

    Rename .sqlite to .db.
---
 README.md  | 2 +-
 emacsql.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 47f437eb54..ce1a9bc8b9 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ objects.
 Requires Emacs 24 or later.
 
 ```el
-(defvar db (emacsql-connect "company.sqlite"))
+(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))
diff --git a/emacsql.el b/emacsql.el
index 5bdb325e13..c42b19366a 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -12,7 +12,7 @@
 ;; file. For each connection a sqlite3 inferior process is kept alive.
 ;; Connections are closed with `elfeed-close'.
 
-;;     (defvar db (emacsql-connect "company.sqlite"))
+;;     (defvar db (emacsql-connect "company.db"))
 
 ;; Database connections are automatically closed when the connection
 ;; object is garbage collected. Though this doesn't excuse poor coding



reply via email to

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