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, ListId FROM Cards WHERE CardId = ?", data = data.frame("614060b2c37da423f30dc7d6") ) 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("ListId = ", results[row,]$ListId, "\n")) } results <- sqlGetResults(cnx, max = 1000) }