Created
December 13, 2018 16:13
-
-
Save srvanderplas/f9d4b115f4a3c8498757e2f080bf8cfb to your computer and use it in GitHub Desktop.
Tiny Shiny App for debugging ODBC connections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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