Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. db <- dbConnect(MySQL(), dbname = "rstudio", host = "localhost",
  2. port = 3306, user = "root", password = "")
  3.  
  4. query <- sprintf("SELECT * FROM userdetails where SSC = %s",input$tenth)
  5.  
  6. data <- dbGetQuery(db, query)
  7.  
  8. Operation not allowed without an active reactive context. (You tried to do something that can only be done from inside a reactive expression or observer.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement