Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

re-introduce the binding #133

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: OuhscMunge
Title: Data Manipulation Operations
Description: Data manipulation operations frequently used in OUHSC BBMC
projects.
Version: 0.2.0.9015
Version: 0.2.0.9016
Authors@R: person("Will", "Beasley", email="[email protected]", role=c("aut", "cre"),
comment = c(ORCID = "0000-0002-5613-5006"))
URL: https://github.com/OuhscBbmc/OuhscMunge, http://ouhsc.edu/bbmc/
Expand Down
2 changes: 1 addition & 1 deletion R/retrieve-key-value.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ retrieve_key_value <- function(
base::tryCatch(
expr = {
query <- DBI::dbSendQuery(channel, sql)
# bind <- DBI::dbBind(query, list(project_name, key))
bind <- DBI::dbBind(query, list(project_name, key))
ds_value <- DBI::dbFetch(query)

}, finally = {
Expand Down
Loading