Function: closql-object

closql-object is a byte-compiled function defined in closql.el.

Signature

(closql-object &rest _)

Documentation

You cannot create a new object of type closql-object(var)/closql-object(fun).

Source Code

;; Defined in ~/.emacs.d/elpa/closql-20260101.1828/closql.el
;;; Objects

(defclass closql-object ()
  ((closql-class-prefix  :initform nil :allocation :class)
   (closql-class-suffix  :initform nil :allocation :class)
   (closql-table         :initform nil :allocation :class)
   (closql-primary-key   :initform nil :allocation :class)
   (closql-foreign-key   :initform nil :allocation :class)
   (closql-order-by      :initform nil :allocation :class)
   (closql-database      :initform nil :initarg :closql-database))
  :abstract t)