branch: elpa/emacsql
commit b3110c9fa9b6411c24e8d1a47c6e48717bfca8ea
Author: Christopher Wellons <[email protected]>
Commit: Christopher Wellons <[email protected]>
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