diff --git a/man/import_flobs.Rd b/man/import_flobs.Rd index fd87046..8b16e48 100644 --- a/man/import_flobs.Rd +++ b/man/import_flobs.Rd @@ -57,7 +57,7 @@ Values in file name are matched to table primary key to determine where to write conn <- DBI::dbConnect(RSQLite::SQLite(), ":memory:") DBI::dbGetQuery(conn, "CREATE TABLE Table1 (CharColumn TEXT PRIMARY KEY NOT NULL)") DBI::dbWriteTable(conn, "Table1", data.frame(CharColumn = c("a", "b")), append = TRUE) -key <- data.frame(CharColumn = "a", stringsAsFactors = FALSE)[0,,drop = FALSE] +key <- data.frame(CharColumn = "a", stringsAsFactors = FALSE)[0, , drop = FALSE] dir <- tempdir() write.csv(key, file.path(dir, "a.csv")) import_flobs("BlobColumn", "Table1", conn, dir)