ODBC Driver for Slack

Build 22.0.8462

Querying Data

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

SELECT Procedure

You can use Query to execute the statement, which will return a Row object you can use to fetch results.

rows, _ := db.Query("SELECT Id, Name FROM Channels WHERE IsPublic = 'True'")
defer rows.Close()

Iterating over the Results

You can use Next to iterate through the rows in the resultset. To extract values from a row, use Scan to bind columns to local variables. The number of pointers given to Scan must match the number of columns in the resultset exactly, otherwise Scan will return an error.

for rows.Next() {
        var (
                Id string
                Name string
        )

        rows.Scan(&Id, &Name)
        fmt.Printf("Id = %s, Name = %s\n", Id, Name)
}

You may use types with Scan other than strings, as long as the data can be converted by the sql package. Please refer to the Scan function in the sql package documentation for supported types and type conversion rules.

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