squr
squr copied to clipboard
Structured Query Utility for R
Hello, This package is amazing, and I use it all the time for work. However, recently, one of my coworkers tried to install it on their machine and received an...
incl. known limitations, support for prepared queries with parameter binding etc. Great idea this package and a good foundation to separate SQL from R code!
Hi @smbache The package is very useful and I used it a lot in my production code. Have you got a plan to submit the package to CRAN? Kind regards
Many times we have SQL like: ``` select col1, col2 from my_table where col3 in @param ``` I tried: ``` > sql %>% sq_set(param = '(1,2,3)') select col1, col2 from...