Method: (DB-PGET DB T)

Source

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