• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/

Lines Matching defs:delete

249  * <p>Any type of index may be used to delete entities with a specified key by
250 * calling {@link #delete}. The important thing to keep in mind is that
255 * primaryIndex.delete(1); // Deletes a single employee by unique ID</pre>
260 * secondaryIndex.delete("Engineering"); // Deletes all Engineering employees</pre>
265 * EntityCursor#delete}.</p>
316 * primaryIndex.delete(txn, 1);
317 * primaryIndex.delete(txn, 2);
345 * primaryIndex.delete(null, 1);
346 * primaryIndex.delete(null, 2);</pre>
357 * a null transaction argument. For example, {@link #delete} may be called
358 * instead of {@link #delete(Transaction,Object)}. For example, the following
363 * primaryIndex.delete(1);
364 * primaryIndex.delete(2);</pre>
375 * methods that open a cursor if that cursor will be used to delete or update
379 * EntityCursor#delete} method is called:</p>
386 * cursor.delete(); // <strong>Will throw DatabaseException.</strong>
399 * cursor.delete();
422 * cursor.delete();
525 * cursor.delete();
651 boolean delete(K key)
664 boolean delete(Transaction txn, K key)
672 * store is transactional, the cursor may not be used to update or delete
686 * cursor may not be used to update or delete entities.
702 * store is transactional, the cursor may not be used to update or delete
716 * cursor may not be used to update or delete entities.
733 * store is transactional, the cursor may not be used to update or delete
764 * cursor may not be used to update or delete entities.
799 * store is transactional, the cursor may not be used to update or delete
830 * cursor may not be used to update or delete entities.