| 701 | db.checkError("BtreeCursor", sqlite3BtreeCursor(db.btree, table, write, nullptr, cursor)); |
| 702 | } |
| 703 | ~IntKeyCursor() { |
| 704 | if (cursor) { |
| 705 | try { |
| 706 | db.checkError("BtreeCloseCursor", sqlite3BtreeCloseCursor(cursor)); |
| 707 | } catch (...) { |
| 708 | } |
| 709 | delete[](char*) cursor; |
| 710 | } |
| 711 | } |
| 712 | }; |
| 713 | |
| 714 | struct RawCursor { |
nothing calls this directly
no test coverage detected