Added ability to receive updates from sqlite3_update_hook#1267
Merged
daniellockyer merged 1 commit intoTryGhost:masterfrom Sep 13, 2022
Merged
Added ability to receive updates from sqlite3_update_hook#1267daniellockyer merged 1 commit intoTryGhost:masterfrom
sqlite3_update_hook#1267daniellockyer merged 1 commit intoTryGhost:masterfrom
Conversation
|
This would sure be useful. Any updates? |
Collaborator
|
Triggering CI again, this PR looks good. |
|
Is it still open due to conflicts in |
kewde
reviewed
Jan 8, 2021
|
This would be very useful for my project |
|
+1 this :) |
Contributor
|
@soukand Would you be able to rebase the PR? 🙂 |
Closed
|
+1 this will be a game changer for what I am working on. Can we get this merged? |
|
We need this too. Are there any plans to merge it anytime soon? |
Contributor
|
Hi all! 👋🏻 I am working on rebasing this myself but currently running into a situation where it causes the process to hang. I should have some more time next week to work on it 🙂 |
18b9ba0 to
b207280
Compare
sqlite3_update_hook
closes TryGhost#419 - this adds support for a `change` event which forwards events arising from `sqlite3_update_hook`
b207280 to
946a3f6
Compare
Contributor
|
Thanks for the patience everyone - this will be released shortly 🙂 |
|
This seems to be missing from the documentation. Is there a more up-to-date API documentation than the Github wiki? |
This was referenced Sep 13, 2024
This was referenced Sep 30, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently there are event
insert/update/deleteevents defined on javascript side, but they are not working c++ side.The code was already implemented in pull request #1174, but tests weren't added, so i decided to add them myself.