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 Country, Education FROM [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer WHERE Country = ?", "Australia")
defer rows.Close()
for rows.Next() {
var (
Country string
Education string
)
rows.Scan(&Country, &Education)
fmt.Printf("Country = %s, Education = %s\n", Country, Education)
}
Reusable Statements
The Prepare function creates prepared Stmt objects, which can be re-used across multiple Query and Exec calls.
stmt, _ := db.Prepare("SELECT Country, Education FROM [AdventureWorksDW2012Multidimensional-SE].[Adventure Works].Customer WHERE Country = ?")
defer stmt.Close()
rows, _ := stmt.Query("Australia 1")
defer rows.Close()
for rows.Next() {
var (
Country string
Education string
)
rows1.Scan(&Country, &Education)
fmt.Printf("Country = %s, Education = %s\n", Country, Education)
}
rows, _ = stmt.Query("Australia 2")
defer rows.Close()
for rows.Next() {
var (
Country string
Education string
)
rows2.Scan(&Country, &Education)
fmt.Printf("Country = %s, Education = %s\n", Country, Education)
}