-
-
Notifications
You must be signed in to change notification settings - Fork 978
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
[FR] Run SQL chunk with DBI option immediate = TRUE
?
#2241
Comments
Found this while looking for that exact same desired functionality - an ' immediate = T' chunk option would be amazing. |
@JrmFRL this is not supported to passe any option to Just some notes if someone wants to tackle this, if possible, by a PR:
Anyone willing to help with this is welcomed! Thanks ! |
So...I'm really craving this immediate option for SQL chunks and tried to have a go at this myself yet I seem to lack the insight on how to get Rstudio to actually use a modified engine. The edited engine.R file can be found here in this forked repos: https://github.com/AWKruijt/knitr_add_sql_immediate. Not sure if this is actually all that is required to get it to work (I am probably being wonderfully naive now) but I think it shouldn't require much more than this either? Yet, as said, I seem unable to get the thing to test run >.< If someone could give it a spin that would be awesome. |
Big update I think :) Using a knitr::knit_engines$set()-style test I think I managed to iron most details out now. See latest commit at this forked repos: https://github.com/AWKruijt/knitr_add_sql_immediate. In addition to the option immedate, I've also added and option replace which (if TRUE) adds code to remove an existing temporary table before executing an "into" query. My attempt at custom error handling in case of attempt to replace a non-temporary table doesn't yet work however. Not sure what the next step is now? Should I initiate a PR? |
Hi @AWKruijt, Thanks for your work on this feature! This sounds great!
Yes please open a PR, it will be easier for us to review and test ! Thanks a lot! |
I understand from the documentation that DBI is used in backend to run SQL chunk.
I try to reproduce the behaviour of running of R instruction similar to:
but I could not find any option to pass in the sql chunk header, such as:
I tried many things such as:
immediate = "TRUE/True"
params = parameters
withparameters <- list(immediate = TRUE)
...but could not success.
Is there a way to achieve this I have not thought about ?
Thank you !
The text was updated successfully, but these errors were encountered: