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