Parameterized Statements
The following code example shows how to bind parameters to create parameterized statements.
Single-Use Statements
The sqlExecute function from RODBCext accepts an additional data frame for binding query parameters to values.
sqlExecute(
cnx,
query = "SELECT Name, Industry FROM Accounts WHERE Industry = ?",
data = data.frame("Manufacturing")
)
results <- sqlGetResults(cnx, max = 1000)
while (is.data.frame(results)) {
for (row in 1:nrow(results)) {
cat(paste("Name = ", results[row,]$Name, "\n"))
cat(paste("Industry = ", results[row,]$Industry, "\n"))
}
results <- sqlGetResults(cnx, max = 1000)
}