Constructor - assigns a Database object and a Cursor handle
(Database db, long handle)
| 51 | * Constructor - assigns a Database object and a Cursor handle |
| 52 | */ |
| 53 | public Cursor(Database db, long handle) { |
| 54 | m_db = db; |
| 55 | m_handle = handle; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Constructor - creates a new Cursor of a Database |