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 TotalCharge, Product FROM SettledBatchList WHERE IncludeStatistics = ?", data = data.frame("True") ) results <- sqlGetResults(cnx, max = 1000) while (is.data.frame(results)) { for (row in 1:nrow(results)) { cat(paste("TotalCharge = ", results[row,]$TotalCharge, "\n")) cat(paste("Product = ", results[row,]$Product, "\n")) } results <- sqlGetResults(cnx, max = 1000) }