Inserts a Database item and points the Cursor to the inserted item @see Cursor#insert(byte[], byte[], int)
(byte[] key, byte[] record)
| 327 | * @see Cursor#insert(byte[], byte[], int) |
| 328 | */ |
| 329 | public void insert(byte[] key, byte[] record) |
| 330 | throws DatabaseException { |
| 331 | insert(key, record, 0); |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Inserts a Database item and points the Cursor to the inserted item |