1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/tbl-sql.R
\name{tbl_sql}
\alias{tbl_sql}
\title{Create an SQL tbl (abstract)}
\usage{
tbl_sql(subclass, src, from, ..., vars = NULL)
}
\arguments{
\item{subclass}{name of subclass}
\item{...}{needed for agreement with generic. Not otherwise used.}
\item{vars}{Provide column names as a character vector
to avoid retrieving them from the database.
Mainly useful for better performance when creating
multiple \code{tbl} objects.}
}
\description{
Generally, you should no longer need to provide a custom \code{tbl()}
method.
The default \code{tbl.DBIConnect} method should work in most cases.
}
\keyword{internal}
|