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