dbWriteTable,PostgreSQLConnection,character,sf-method {sf} | R Documentation |
Write sf
object to Database
Description
Write sf
object to Database
Write sf
object to Database
Usage
## S4 method for signature 'PostgreSQLConnection,character,sf'
dbWriteTable(
conn,
name,
value,
...,
row.names = FALSE,
overwrite = FALSE,
append = FALSE,
field.types = NULL,
binary = TRUE
)
## S4 method for signature 'DBIObject,character,sf'
dbWriteTable(
conn,
name,
value,
...,
row.names = FALSE,
overwrite = FALSE,
append = FALSE,
field.types = NULL,
binary = TRUE
)
Arguments
conn |
DBIObject |
name |
character vector of names (table names, fields, keywords). |
value |
a data.frame. |
... |
placeholder for future use. |
row.names |
Add a |
overwrite |
Will try to |
append |
Append rows to existing table; default |
field.types |
default |
binary |
Send geometries serialized as Well-Known Binary (WKB);
if |
[Package sf version 1.0-16 Index]