When I deploy to shinyapps.io, it gives me an error:
Unable to find repository URL for package RODBC
So when I go to open the chart via URL, it doesn't show anything, because it was unable to connect to the connection I had and load the data into the data frames I had created.
ok, you have R version 3.6.1
so packages needing R4 wont work (unless you upgrade your R) https://cran.r-project.org/web/packages/RODBC/ChangeLog
says that R4 is required since Version: 1.3-17 (2020-05-11, released)
you'd be able to install Version: 1.3-16 (2019-09-02, released) if you stick with your R version.
you can either find an MRAN mirror , or perhaps use renv package to install 1.3.16
If you had renv you would do
renv::install("RODBC", type = "binary")
I'm still on R 3.6.2 myself, and this is the result:
Retrieving 'https://cran.rstudio.com/bin/windows/contrib/3.6/RODBC_1.3-16.zip' ...
OK [file is up to date]
Installing RODBC [1.3-16] ...
OK [installed binary]
* Copying 'RODBC' into the cache ... Done!
@nirgrahamuk, Although my project is not working yet at shinyapps.io (I don't know why, I'm checking the log), the problem was solved as you explained!
I ended up updating the R version, and the error didn't show up anymore, thanks! I didn't know that it was necessary to update the version for this kind of problem!