-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Record current cursor #31
Comments
I love it! |
OK, cool. Should EDIT: is there a way to check if a cursor is open? |
I think it should. We should consider |
I meant Instead of int whatever(sphia_t *self) {
if (magic(self->cursor)) {
self->error = "Cursor already open, dummy!";
return -1;
}
// . . .
return 0;
} |
Hmm, yeah I like this too. We just have to experiment ! |
Sophia gets confused when there's more than one cursor open on the same db.
Thoughts on
sphia_t->cursor
?The following fails to remove "mykey" (assuming it's there).
The text was updated successfully, but these errors were encountered: