根据选择,使用Shiny更新Postgresql中的表

时间:2020-02-20 11:26:02

标签: r postgresql shiny shinydashboard

我需要使用基于选择的Shiny应用程序更新Postgresql中的表。我的选择基于excel文件中的“ epci”列,我需要其他列“ code_com,code_epci,code_dept,code_reg”来更新表格。

我的连接和excel文件:

pool <- dbPool(drv = dbDriver("PostgreSQL", max.con = 100), user = "X", password = "Y", host = "Z", port = 5432, dbname = "test", idleTimeout = 3600000)

base <- read_xlsx("base.xlsx")

我称呼选择。仅显示“ epci”字段:

selectInput("f_epci", h4(strong("Territory selection :")), base["epci"], multiple = TRUE),

当我按下按钮时,如何基于“ epci”选择来更新带有字段(code_com,code_epci,code_dept,code_reg)的表postgres?

谢谢!

0 个答案:

没有答案