Description Usage Arguments Value Examples
View source: R/AmerAssocIndividInvestorsAAII.R
1 2 3 4 5 6 7 8 | Based on the idea of the R CRAN package caroline function dbWriteTable2.
\url{https://github.com/cran/caroline/blob/af201137e4a31d675849291a1c9c07a0933b85de/R/database.R}
Match the the Server/data.frame columns with each other.
Create new columns as necessary. Verify/Make the data.frame
columns order match that of the Server table order.
Inspired by the R CRAN package Caroline.
|
1 2 3 4 5 6 7 8 9 | dbdfMatchColsEM(
connName,
name = substitute(value),
value,
temporary = FALSE,
env,
display = TRUE,
exec = TRUE
)
|
connName |
String. Default is "connEM". Contains the name of the variable that contains the name of the "connection" in the environment "env". |
name |
a character string specifying a table name. |
value |
a data.frame (or coercible to data.frame). |
temporary |
Logical. Default is FALSE, If TRUE, then look for the "conn" object "name" in the temporary namespace. |
env |
Environment. Default is the .Global environment. This is the environment to return the connection object "connEM". |
display |
Logical. Whether to display the query (defaults to TRUE). |
exec |
Logical. Whether to execute the query (defaults to TRUE). |
data.frame with more columns and/or re-ordered columns. The server "name" may get more columns.
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 | ## Not run:
mtcars2 <- mtcars
mtcars2[["model"]] <- rownames(mtcars2)
mtcars2 <- DataCombine::MoveFront(mtcars2, Var = "model")
mtcars2[["vs"]] <- as.logical(mtcars2[["vs"]])
mtcars2[["gear"]] <- as.integer(mtcars2[["gear"]])
mtcars2[["carb"]] <- zoo::as.Date(mtcars2[["carb"]])
rownames(mtcars2) <- NULL
#
# Creates the table (with zero rows).
# Appends data (with the value(data.frame) having the same columns
# on the server).
mtcars2s <- mtcars2[1:5,]
dbdfMatchColsEM(name = "mtcars", value = mtcars2s, PartKeyDef = "LIST (gear)", PrimaryKey = c("gear", "model"), Indexes = list(gear_model_vs = c("gear", "model", "vs")))
# Appends data (with the value(data.frame) having less columns
# than that of the server database).
# Those server columns, that are not found in the value(data.frame),
# are added to the value(data.frame).
mtcars2lDf <- mtcars2[6:10, "model", drop = F]
dbdfMatchColsEM(name = "mtcars", value = mtcars2lDf)
# Appends data (with the server database having less columns
# than that of the value(data.frame)).
# Those value(data.frame) columns, that are not found in the server, are added to the server.
mtcars2lSv <- {DfNew <- mtcars2[11:15, c("model","vs", "am", "gear", "carb")]
colnames(DfNew) <- paste0(colnames(DfNew),"_new")
DfNew[["model"]] <- DfNew[["model_new"]]
DfNew <- DataCombine::MoveFront(DfNew, Var = "model")
DfNew
}; rm(DfNew)
dbdfMatchColsEM(name = "mtcars", value = mtcars2lSv)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.