aboutsummaryrefslogtreecommitdiff
path: root/R/checksubstance.R
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2015-12-15 01:34:14 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2015-12-15 01:34:14 +0100
commit39fab3ac713248e7f358ebb182cfbf228d8d3100 (patch)
treea4f610947167962c3ea893a48296f69641b9a47b /R/checksubstance.R
parentcc66ea8e99f809c53cb5a23430b814f68efdb126 (diff)
Fix connecting to the UFT database
Diffstat (limited to 'R/checksubstance.R')
-rw-r--r--R/checksubstance.R2
1 files changed, 1 insertions, 1 deletions
diff --git a/R/checksubstance.R b/R/checksubstance.R
index 3e07f92..790182f 100644
--- a/R/checksubstance.R
+++ b/R/checksubstance.R
@@ -11,7 +11,7 @@ checksubstance <- function(substance, db = "cytotox", experimentator = "%",
if (!(db %in% rownames(databases))) stop("Database is not supported")
- if (requireNamespace("RODBC")) {
+ if (require("RODBC")) {
channel <- RODBC::odbcConnect(db, uid="cytotox", pwd="cytotox", case="tolower")
} else {
stop("For this function, the RODBC package has to be installed and configured.")

Contact - Imprint