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