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