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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
\name{sqlQuery}
\alias{sqlQuery}
\alias{sqlGetResults}
\title{Query an ODBC Database}
\description{
Submit an SQL query to an ODBC database, and retrieve the results.
}
\usage{
sqlQuery(channel, query, errors = TRUE, ..., rows_at_time = 1)
sqlGetResults(channel, as.is = FALSE, errors = FALSE,
max = 0, buffsize = 1000,
nullstring = NA, na.strings = "NA",
believeNRows = TRUE, dec = getOption("dec"))
}
\arguments{
\item{channel}{connection handle as returned by \code{\link{odbcConnect}}.}
\item{query}{any valid SQL statement}
\item{errors}{if TRUE halt and display error, else return -1}
\item{\dots}{additional arguments to be passed to \code{sqlGetResults}.}
\item{rows_at_time}{The number of rows to fetch at a time, up to 1024. Not
all drivers work correctly with values > 1. See Details.}
\item{as.is}{which (if any) character columns should be converted,
as in \code{\link{read.table}}? See the details.}
\item{max}{limit on the number of rows to fetch, with 0 indicating no limit.}
\item{buffsize}{an initial guess at the number of rows, used if
\code{max = 0} and \code{believeNRows == FALSE} for the driver.}
\item{nullstring}{
character string to be used when reading \code{SQL_NULL_DATA}
character items from the database.
}
\item{na.strings}{
character string(s) to be mapped to \code{NA} when reading character
data.
}
\item{believeNRows}{logical. Is the number of rows returned by the
ODBC connection believable? This might already be set to false when
the channel was opened, and can that setting cannot be overriden.}
\item{dec}{The character for the decimal place to be assumed when
converting character columns to numeric.}
}
\details{
\code{sqlQuery} is the workhorse function of RODBC. It sends the SQL
statement \code{query} to the server, using connection \code{channel}
returned by \code{\link{odbcConnect}}, and retrieves (some or all of)
the results via \code{sqlGetResults}.
SQL beginners should note that the term 'Query' includes
any valid SQL statement including table creation, alteration, updates
etc as well as SELECTs. The \code{sqlQuery} command is a convenience
wrapper that calls first \code{\link{odbcQuery}} and then
\code{sqlGetResults}. If finer-grained control is needed, for example
over the number of rows fetched, these functions should be called
directly or additional arguments passed to \code{sqlQuery}.
\code{sqlGetResults} is a mid-level function. It should be called
after a call to \code{sqlQuery} or \code{\link{odbcQuery}} and used to
retrieve waiting results into a data frame. Its main use is with
\code{max} set to non-zero when it will retrieve the result set in
batches with repeated calls. This is useful for very large result sets
which can be subjected to intermediate processing.
Where possible \code{sqlGetResults} transfers data directly: this
happens for \code{double}, \code{real}, \code{integer} and
\code{smallint} columns in the table. All other SQL data types are
converted to character strings by the ODBC interface. If the
\code{as.is} is true for a column, it is returned as character.
Otherwise (where detected) \code{date}, \code{datetime} and
\code{timestamp} values are converted to \code{"Date"} and
\code{"POSIXct"} values respectively. (Some drivers seem to confuse times
with dates, so times may get converted too.) Other types are
converted by \R using \code{\link{type.convert}}. When
character data are to be converted to numeric data, the setting of
\code{options("dec")} to map the character used up the ODBC driver in
setting decimal points---this is set to a locale-specific value
when RODBC is initialized if it is not already set.
Using \code{buffsize} will yield a marginal increase in speed if set
to no less than the maximum number of rows when \code{believeNRows =
FALSE}. (If set too small it can result in unnecessarily high
memory use as the buffers will need to be expanded.)
Modern drivers should work (and work faster, especially if
communicating with a remote machine) with \code{rows_a_time = 1024}.
However, some drivers may mis-fetch multiple rows, so set this to
\code{1} if the results are incorrect.
}
\value{
A data frame (possibly with 0 rows) on success.
If \code{errors = TRUE}, a character vector of error message(s),
otherwise error code \code{-1} (general, call
\code{\link{odbcGetErrMsg}} for details) or \code{-2} (no data, which
may not be an error as some SQL commands do return no data).
}
\seealso{
\code{\link{odbcConnect}}, \code{\link{sqlFetch}},
\code{\link{sqlSave}}, \code{\link{sqlTables}}, \code{\link{odbcQuery}}
}
\author{
Michael Lapsley and Brian Ripley
}
\examples{
\dontrun{
channel <- odbcConnect("test")
sqlSave(channel, USArrests, rownames = "State", verbose = TRUE)
# options(dec=".") # optional, if DBMS is not locale-aware
## note case of State, Murder, rape are DBMS-dependent.
sqlQuery(channel, paste("select State, Murder from USArrests",
"where Rape > 30 order by Murder"))
close(channel)
}}
\keyword{IO}
\keyword{database}
|