-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.R
65 lines (59 loc) · 2.29 KB
/
questions.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# ## questions.R
# Functions related to retrieval of questions and answers
# ### questionRetrieve(answered_questions)
# Function will retrieve question and answers not listed in the game, and also returns updated list of answered questions
# #### input:
# answered_question contains list of questionIDs already displayed in the game.
# #### output:
# list(questionID, question, options, correct_option_index, answered_questions_updated)
# Name of the packages
pkgnames3 <- c("DBI", "RMySQL")
# Use our custom load function
loadPkgs(pkgnames3)
sqlQuery <- function (query) {
# creating DB connection object with RMysql package
#query = "SELECT * FROM RandomQuestion"
DB <- dbConnect(
drv = RMySQL::MySQL(),
dbname = "student071",
host = "esddbinstance-1.ceo4ehzjeeg0.ap-southeast-1.rds.amazonaws.com",
username = "student071",
password = "YttS3FxB")
# close db connection after function call exits
on.exit(dbDisconnect(DB))
# send Query to obtain result set
rs <- dbSendQuery(DB, query)
# get elements from result sets and convert to dataframe
result <- fetch(rs, -1)
killDbConnections <- function () {
all_cons <- dbListConnections(MySQL())
print(all_cons)
for(con in all_cons)
+ dbDisconnect(con)
print(paste(length(all_cons), " connections killed."))
}
# return the dataframe
return(result)
}
questionRetrieve <- function(answered_questions){
#open the connection
answeredCon <- ""
if (length(answered_questions > 0)){
answeredCon <- answered_questions[1]
for (answered in answered_questions[-1]){
answeredCon <- paste0(answeredCon, ", ", answered)
}
answeredCon <- paste0("WHERE questionID NOT IN (", answeredCon, ")")
}
data <- sqlQuery(paste0("SELECT * FROM GameQuestions ", answeredCon, " ORDER BY RAND() LIMIT 1"))
output <- list(
"questionID" = data[["questionID"]] ,
"question" = data[["question"]],
"options" =c(data[["a"]],data[["b"]],data[["c"]],data[["d"]]),
"correct_option_index" = data[["correct_option_index"]], #if option 1 is correct, etc
"answered_questions_updated" = append(data[["questionID"]], answered_questions) #updated list of answered questions
#"answered_questions_updated" = c(1, 2, 3) #updated list of answered questions
)
return(output)
#Close the connection
}