Moves the Cursor to the direction specified in the flags. This method wraps the native ups_cursor_move function. More information: C documentation @param flags the directio
(int flags)
| 167 | * </ul> |
| 168 | */ |
| 169 | public void move(int flags) |
| 170 | throws DatabaseException { |
| 171 | int status = ups_cursor_move_to(m_handle, flags); |
| 172 | if (status != 0) |
| 173 | throw new DatabaseException(status); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Moves the Cursor to the first Database element |