R 3.5.2版本:找不到Rmysql或池或devtools软件包

问题描述 投票:0回答:1

有其他选择吗?我必须使用R版本3.5.2我需要在闪亮的应用程序中将mysql表与UI一起使用

我发现了像DBI,Pool,Rmysql之类的软件包但是无法在我正在使用的R版本中进行安装。]

需要帮助!

谢谢

r shiny rmysql
1个回答
-1
投票
//You might want to try and installing from Githubs directly instead of using //CRAN 
    install.packages("RMariaDB")
    remotes::install_github("r-dbi/DBI")
    remotes::install_github("r-dbi/RMariaDB")
    con <- dbConnect(RMariaDB::MariaDB(), group = "my-db")


[Link to guides by Rstudio][1]


  [1]: https://db.rstudio.com/databases/my-sql/
© www.soinside.com 2019 - 2024. All rights reserved.