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