You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
477B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/utils.R
  3. \name{dbUpsert}
  4. \alias{dbUpsert}
  5. \title{Upserta dataframe into a database table}
  6. \usage{
  7. dbUpsert(df, con, table, PK)
  8. }
  9. \arguments{
  10. \item{df}{Dataframe to upsert into the database}
  11. \item{con}{Database connection}
  12. \item{table}{Table in the database in which to push the dataframe}
  13. \item{PK}{Character vector of the primary key(s)}
  14. }
  15. \description{
  16. Upserta dataframe into a database table
  17. }