ODBC Driver for Zoho Projects

Build 22.0.8462

Querying Data

After Connecting, you can execute a SQL statement and retrieve the results.

SELECT Procedure

You can use the sqlQuery function to execute queries. By default, it will return all the results as a single data frame. This works well for smaller result sets.

results <- sqlQuery(cnx, "SELECT Id, Name FROM Portals WHERE Id = '123456'")
for (row in 1:nrow(results)) {
    cat(paste("Id = ", results[row,]$Id, "\n"))
    cat(paste("Name = ", results[row,]$Name, "\n"))
}

Iterating over the Results

For larger result sets, sqlQuery can return results in batches instead of storing the entire result set in memory. When there are no results left, or an error occurs, sqlQuery and sqlGetResults will return an integer error code instead of a data frame.

results <- sqlQuery(cnx, "SELECT Id, Name FROM Portals WHERE Id = '123456'", max = 1000)
while (is.data.frame(results)) {
    for (row in 1:nrow(results)) {
        cat(paste("Id = ", results[row,]$Id))
        cat(paste("Name = ", results[row,]$Name))
    }
    rows <- sqlGetResults(cnx, max = 1000)
}

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