# S4 method for OdbcConnection,character,data.frame
dbWriteTable(
conn,
name,
value,
overwrite = FALSE,
append = FALSE,
temporary = FALSE,
row.names = NA,
field.types = NULL,
batch_rows = getOption("odbc.batch_rows", NA),
...
)# S4 method for OdbcConnection,Id,data.frame
dbWriteTable(
conn,
name,
value,
overwrite = FALSE,
append = FALSE,
temporary = FALSE,
row.names = NA,
field.types = NULL,
batch_rows = getOption("odbc.batch_rows", NA),
...
)
# S4 method for OdbcConnection,SQL,data.frame
dbWriteTable(
conn,
name,
value,
overwrite = FALSE,
append = FALSE,
temporary = FALSE,
row.names = NA,
field.types = NULL,
batch_rows = getOption("odbc.batch_rows", NA),
...
)
# S4 method for OdbcConnection
dbAppendTable(conn, name, value, ..., row.names = NULL)
# S4 method for OdbcConnection
sqlData(con, value, row.names = NA, ...)
# S4 method for OdbcConnection
sqlCreateTable(
con,
table,
fields,
row.names = NA,
temporary = FALSE,
...,
field.types = NULL
)