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