()
| 463 | } |
| 464 | |
| 465 | public void closeNoLock() |
| 466 | throws DatabaseException { |
| 467 | int status = ups_cursor_close(m_handle); |
| 468 | if (status != 0) |
| 469 | throw new DatabaseException(status); |
| 470 | m_handle = 0; |
| 471 | } |
| 472 | |
| 473 | /** |
| 474 | * Returns the Cursor handle |
no test coverage detected