我需要使用基于选择的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?
谢谢!