forked from r-dbi/odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodbcPreviewQuery.Rd
33 lines (27 loc) · 1.03 KB
/
odbcPreviewQuery.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/connection-pane.R
\name{odbcPreviewQuery}
\alias{odbcPreviewQuery}
\alias{odbcPreviewQuery.OdbcConnection}
\alias{odbcPreviewQuery.Microsoft SQL Server}
\alias{odbcPreviewQuery.Teradata}
\alias{odbcPreviewQuery.Oracle}
\title{Create a preview query.}
\usage{
odbcPreviewQuery(connection, rowLimit, name)
\method{odbcPreviewQuery}{OdbcConnection}(connection, rowLimit, name)
\method{odbcPreviewQuery}{`Microsoft SQL Server`}(connection, rowLimit, name)
\method{odbcPreviewQuery}{Teradata}(connection, rowLimit, name)
\method{odbcPreviewQuery}{Oracle}(connection, rowLimit, name)
}
\arguments{
\item{connection}{A connection object, as returned by \code{dbConnect()}.}
\item{rowLimit}{The maximum number of rows to display.}
\item{name}{Name of the object to be previewed}
}
\description{
Optimize against the rowLimit argument. S3 since some
back-ends do not parse the LIMIT syntax. Internal, not expected that
users would interact with this method.
}
\keyword{internal}