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