ODBC Driver for FTP

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 Filesize, Filename FROM Notes WHERE FilePath = '/documents/doc.txt'")
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 (
                Filesize string
                Filename string
        )

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

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