ODBC Driver for Azure Table Storage

Build 22.0.8462

Parameterized Statements

The following code example shows how to bind parameters to create parameterized statements.

Single-Use Statements

The Query and Exec functions both accept additional parameters for binding query parameters to values.

rows, _ := db.Query("SELECT PartitionKey, Name FROM NorthwindProducts WHERE Industry = ?", "Floppy Disks")
defer rows.Close()
for rows.Next() {
        var (
                PartitionKey string
                Name string
        )

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

Reusable Statements

The Prepare function creates prepared Stmt objects, which can be re-used across multiple Query and Exec calls.

stmt, _ := db.Prepare("SELECT PartitionKey, Name FROM NorthwindProducts WHERE Industry = ?")
defer stmt.Close()

rows, _ := stmt.Query("Floppy Disks 1")
defer rows.Close()
for rows.Next() {
        var (
                PartitionKey string
                Name string
        )

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

rows, _ = stmt.Query("Floppy Disks 2")
defer rows.Close()
for rows.Next() {
        var (
                PartitionKey string
                Name string
        )

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

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