Skip to content
Advertisement

object Object error in R Shiny SQLite App

I am trying to develop an R Shiny app with an SQLite Database. But I am facing this error while getting any data from the database. The error message is:

In-app, it shows:

Can anyone please help me? Do you have any suggestions for developing the SQLite database?

The code is below:

Advertisement

Answer

Data frames should not be rendered on user interface with textOutput but tableOutput. Then adjust reactive call to renderTable. And usually input$ objects should be wrapped in reactive. Also, consider properly parameterizing such as with DBI:sqlInterpolate:

server adjustments

ui adjustments


Now, if dbGetQuery returns a one-row and one-column data frame, then you can use renderText in server and textOutput in ui. But extract value from column:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement