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