ODBC Driver for Confluence

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 Key, Name FROM Pages WHERE Id = ?", "10000")
defer rows.Close()
for rows.Next() {
        var (
                Key string
                Name string
        )

        rows.Scan(&Key, &Name)
        fmt.Printf("Key = %s, Name = %s\n", Key, 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 Key, Name FROM Pages WHERE Id = ?")
defer stmt.Close()

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

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

rows, _ = stmt.Query("10000 2")
defer rows.Close()
for rows.Next() {
        var (
                Key string
                Name string
        )

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

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