Browse Source

Doc update

master
Maxime Wack 7 years ago
parent
commit
e2a83d4fca
5 changed files with 9 additions and 7 deletions
  1. +1
    -1
      DESCRIPTION
  2. +1
    -0
      NAMESPACE
  3. +1
    -0
      R/utils.R
  4. +3
    -3
      man/dbPush.Rd
  5. +3
    -3
      man/dbUpdate.Rd

+ 1
- 1
DESCRIPTION View File

@@ -16,4 +16,4 @@ Imports:
httr,
rvest,
xml2
RoxygenNote: 6.0.0
RoxygenNote: 6.0.1

+ 1
- 0
NAMESPACE View File

@@ -1,5 +1,6 @@
# Generated by roxygen2: do not edit by hand

export("%>%")
export(add_body)
export(add_encounters)
export(add_header)


+ 1
- 0
R/utils.R View File

@@ -4,6 +4,7 @@
#' @rdname pipe
#' @keywords internal
#' @importFrom dplyr %>%
#' @export
#' @usage lhs \%>\% rhs
NULL



+ 3
- 3
man/dbPush.Rd View File

@@ -4,14 +4,14 @@
\alias{dbPush}
\title{Push a dataframe into a database table}
\usage{
dbPush(con, table, df)
dbPush(df, con, table)
}
\arguments{
\item{df}{Dataframe to push into the database}

\item{con}{Database connection}

\item{table}{Table in the database in which to push the dataframe}

\item{df}{Dataframe to push into the database}
}
\description{
Push a dataframe into a database table


+ 3
- 3
man/dbUpdate.Rd View File

@@ -4,15 +4,15 @@
\alias{dbUpdate}
\title{Udpdate a dataframe into a database table}
\usage{
dbUpdate(con, table, df, PK)
dbUpdate(df, con, table, PK)
}
\arguments{
\item{df}{Dataframe to update into the database}

\item{con}{Database connection}

\item{table}{Table in the database in which to push the dataframe}

\item{df}{Dataframe to update into the database}

\item{PK}{Character vector of the primary key(s)}
}
\description{


Loading…
Cancel
Save