update packages
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "emacsql" "20250601.1009"
|
||||
(define-package "emacsql" "20251116.1655"
|
||||
"High-level SQL database front-end."
|
||||
'((emacs "26.1"))
|
||||
:url "https://github.com/magit/emacsql"
|
||||
:commit "ced062890061b6e4fbe4d00c0617f7ff84fff25c"
|
||||
:revdesc "ced062890061"
|
||||
:commit "e1908de2cf2c7b77798ef6645d514dded1d7f8a4"
|
||||
:revdesc "e1908de2cf2c"
|
||||
:authors '(("Christopher Wellons" . "wellons@nullprogram.com"))
|
||||
:maintainers '(("Jonas Bernoulli" . "emacs.emacsql@jonas.bernoulli.dev")))
|
||||
|
||||
@@ -49,8 +49,9 @@ buffer. This is for debugging purposes."
|
||||
(and (oref connection handle) t))
|
||||
|
||||
(cl-defmethod emacsql-close ((connection emacsql-sqlite-builtin-connection))
|
||||
(sqlite-close (oref connection handle))
|
||||
(oset connection handle nil))
|
||||
(when (oref connection handle)
|
||||
(sqlite-close (oref connection handle))
|
||||
(oset connection handle nil)))
|
||||
|
||||
(cl-defmethod emacsql-send-message
|
||||
((connection emacsql-sqlite-builtin-connection) message)
|
||||
|
||||
@@ -55,8 +55,9 @@ buffer. This is for debugging purposes."
|
||||
(and (oref connection handle) t))
|
||||
|
||||
(cl-defmethod emacsql-close ((connection emacsql-sqlite-module-connection))
|
||||
(sqlite3-close (oref connection handle))
|
||||
(oset connection handle nil))
|
||||
(when (oref connection handle)
|
||||
(sqlite3-close (oref connection handle))
|
||||
(oset connection handle nil)))
|
||||
|
||||
(cl-defmethod emacsql-send-message
|
||||
((connection emacsql-sqlite-module-connection) message)
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
;; Maintainer: Jonas Bernoulli <emacs.emacsql@jonas.bernoulli.dev>
|
||||
;; Homepage: https://github.com/magit/emacsql
|
||||
|
||||
;; Package-Version: 20250601.1009
|
||||
;; Package-Revision: ced062890061
|
||||
;; Package-Version: 20251116.1655
|
||||
;; Package-Revision: e1908de2cf2c
|
||||
;; Package-Requires: ((emacs "26.1"))
|
||||
|
||||
;; SPDX-License-Identifier: Unlicense
|
||||
@@ -19,6 +19,11 @@
|
||||
;; PostgreSQL and MySQL are also supported, but use of these connectors
|
||||
;; is not recommended.
|
||||
|
||||
;; Any readable lisp value can be stored as a value in EmacSQL,
|
||||
;; including numbers, strings, symbols, lists, vectors, and closures.
|
||||
;; EmacSQL has no concept of TEXT values; it's all just lisp objects.
|
||||
;; The lisp object `nil' corresponds 1:1 with NULL in the database.
|
||||
|
||||
;; See README.md for much more complete documentation.
|
||||
|
||||
;;; Code:
|
||||
@@ -33,7 +38,7 @@
|
||||
"The EmacSQL SQL database front-end."
|
||||
:group 'comm)
|
||||
|
||||
(defconst emacsql-version "4.3.1")
|
||||
(defconst emacsql-version "4.3.3")
|
||||
|
||||
(defvar emacsql-global-timeout 30
|
||||
"Maximum number of seconds to wait before bailing out on a SQL command.
|
||||
|
||||
Reference in New Issue
Block a user