ODBC Driver for Microsoft Bing

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 URL, Title FROM WebSearch WHERE SearchTerms = ?", "Microsoft")
defer rows.Close()
for rows.Next() {
        var (
                URL string
                Title string
        )

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

Reusable Statements

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

stmt, _ := db.Prepare("SELECT URL, Title FROM WebSearch WHERE SearchTerms = ?")
defer stmt.Close()

rows, _ := stmt.Query("Microsoft 1")
defer rows.Close()
for rows.Next() {
        var (
                URL string
                Title string
        )

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

rows, _ = stmt.Query("Microsoft 2")
defer rows.Close()
for rows.Next() {
        var (
                URL string
                Title string
        )

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

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