(defmethod initialize-db-instance ((env db-ext-env) db-handle txn)
(declare (ignore txn))
(when (not (txn-support-for-handle db-handle))
(%db-close db-handle)
(error "transaction for this database is not enabled..."))
(make-instance 'db-ext
:handle db-handle
:env env))Source Context