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