Skip to content

Instantly share code, notes, and snippets.

@srvanderplas
Created December 13, 2018 16:13
Show Gist options
  • Save srvanderplas/f9d4b115f4a3c8498757e2f080bf8cfb to your computer and use it in GitHub Desktop.
Save srvanderplas/f9d4b115f4a3c8498757e2f080bf8cfb to your computer and use it in GitHub Desktop.
Tiny Shiny App for debugging ODBC connections
shinyApp(ui = fluidPage(textOutput("con"), textOutput("fileexists")),
server = function(input, output) {
output$con <- renderPrint(con)
output$fileexists <- renderPrint(list.files(here::here()))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment