Method: (DB-PGET DB-TXN T)

Source

(defmethod db-pget ((db db-txn) key &key pkey txn
		    consume consume-wait
		    set-recno
		    multiple rmw
		    not-found)
  (db-get (if (is-secondary db)
	      (db-sec-handle db)
	      (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