Method: (DB-GET DB T)

Source

(defmethod db-get ((db db) key &key data txn
		   consume consume-wait
		   set-recno
		   multiple rmw
		   not-found)
  (db-get (db-handle db) key
	  :data data
	  :txn txn
	  :consume consume
	  :consume-wait consume-wait
	  :set-recno set-recno
	  :multiple multiple
	  :rmw rmw
	  :not-found not-found))
Source Context