ODBC Driver for Microsoft Dynamics 365

Build 22.0.8462

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 GoalHeadingId, GoalHeadingId FROM GoalHeadings WHERE Name = ?",
    data = data.frame("MyAccount")
)

results <- sqlGetResults(cnx, max = 1000)
while (is.data.frame(results)) {
    for (row in 1:nrow(results)) {
        cat(paste("GoalHeadingId = ", results[row,]$GoalHeadingId, "\n"))
        cat(paste("GoalHeadingId = ", results[row,]$GoalHeadingId, "\n"))
    }
    results <- sqlGetResults(cnx, max = 1000)
}

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462