Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikVarmer authored Aug 3, 2020
1 parent afd6665 commit 3c03ecc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ devtools::install_github('HenrikVarmer/upsertR')
There is only one core function in upsertR: ```upsert()```, which lets you upsert a dataframe to a target SQL server. See below for an example.

```R
upsert(con, # SQL server connection string
df, # input dataframe
schema, # Target schema name on SQL server
table, # Target table name on SQL server
upsert(connection = con, # SQL server connection string
dataframe = df, # input dataframe
schema = schema, # Target schema name on SQL server
table = table, # Target table name on SQL server
delete = TRUE) # specifies whether to delete old ID's not present in input DF. TRUE deletes old ID's
```

0 comments on commit 3c03ecc

Please sign in to comment.