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