| # Introduction |
| |
| The `database/sql` package provides a generic interface around SQL (or SQL-like) databases. See the [official documentation](https://golang.org/pkg/database/sql/) for details. |
| |
| This page provides example usage patterns. |
| |
| # Database driver |
| |
| The `database/sql` package must be used in conjunction with a database driver. |
| See http://golang.org/s/sqldrivers for a list of drivers. |
| |
| The documentation below assumes a driver has been imported. |
| |
| # Connecting to a database |
| |
| [`Open`](https://golang.org/pkg/database/sql/#Open) |
| is used to create a database handle: |
| |
| ```go |
| db, err := sql.Open(driver, dataSourceName) |
| ``` |
| |
| Where driver specifies a database driver and dataSourceName |
| specifies database-specific connection information |
| such as database name and authentication credentials. |
| |
| Note that `Open` does not directly open a database connection: this is deferred |
| until a query is made. To verify that a connection can be made |
| before making a query, use the |
| [`PingContext`](https://golang.org/pkg/database/sql/#DB.PingContext) |
| method: |
| |
| ```go |
| if err := db.PingContext(ctx); err != nil { |
| log.Fatal(err) |
| } |
| ``` |
| |
| After use, the database is closed using [`Close`](https://golang.org/pkg/database/sql/#DB.Close). |
| |
| # Executing queries |
| |
| [`ExecContext`](https://golang.org/pkg/database/sql/#DB.ExecContext) |
| is used for queries where no rows are returned: |
| |
| ```go |
| result, err := db.ExecContext(ctx, |
| "INSERT INTO users (name, age) VALUES ($1, $2)", |
| "gopher", |
| 27, |
| ) |
| ``` |
| |
| Where result contains the last insert ID and number of |
| rows affected. The availability of these values is dependent on |
| the database driver. |
| |
| [`QueryContext`](https://golang.org/pkg/database/sql/#DB.QueryContext) |
| is used for retrieval: |
| |
| ```go |
| rows, err := db.QueryContext(ctx, "SELECT name FROM users WHERE age = $1", age) |
| if err != nil { |
| log.Fatal(err) |
| } |
| defer rows.Close() |
| for rows.Next() { |
| var name string |
| if err := rows.Scan(&name); err != nil { |
| log.Fatal(err) |
| } |
| fmt.Printf("%s is %d\n", name, age) |
| } |
| if err := rows.Err(); err != nil { |
| log.Fatal(err) |
| } |
| ``` |
| |
| [`QueryRowContext`](https://golang.org/pkg/database/sql/#DB.QueryRowContext) |
| is used where only a single row is expected: |
| |
| ```go |
| var age int64 |
| err := db.QueryRowContext(ctx, "SELECT age FROM users WHERE name = $1", name).Scan(&age) |
| ``` |
| |
| Prepared statements can be created with [`PrepareContext`](https://golang.org/pkg/database/sql/#DB.PrepareContext): |
| |
| ```go |
| age := 27 |
| stmt, err := db.PrepareContext(ctx, "SELECT name FROM users WHERE age = $1") |
| if err != nil { |
| log.Fatal(err) |
| } |
| rows, err := stmt.Query(age) |
| // process rows |
| ``` |
| |
| [`ExecContext`](https://golang.org/pkg/database/sql/#Stmt.ExecContext), [`QueryContext`](https://golang.org/pkg/database/sql/#Stmt.QueryContext) and [`QueryRowContext`](https://golang.org/pkg/database/sql/#Stmt.QueryContext) can be called on statements. After use, a |
| statement should be closed with [`Close`](https://golang.org/pkg/database/sql/#Stmt.Close). |
| |
| # Transactions |
| |
| Transactions are started with [`BeginTx`](https://golang.org/pkg/database/sql/#DB.BeginTx): |
| |
| ```go |
| tx, err := db.BeginTx(ctx, nil) |
| if err != nil { |
| log.Fatal(err) |
| } |
| ``` |
| |
| The [`ExecContext`](https://golang.org/pkg/database/sql/#Tx.ExecContext), [`QueryContext`](https://golang.org/pkg/database/sql/#Tx.QueryContext), [`QueryRowContext`](https://golang.org/pkg/database/sql/#Tx.QueryRowContext) and [`PrepareContext`](https://golang.org/pkg/database/sql/#Tx.PrepareContext) methods already covered can be |
| used in a transaction. |
| |
| A transaction must end with a call to [`Commit`](https://golang.org/pkg/database/sql/#Tx.Commit) or [`Rollback`](https://golang.org/pkg/database/sql/#Tx.Rollback). |
| |
| # Dealing with NULL |
| |
| If a database column is nullable, one of the types supporting null values should be passed to Scan. |
| |
| For example, if the name column in the names table is nullable: |
| |
| ```go |
| var name sql.NullString |
| err := db.QueryRowContext(ctx, "SELECT name FROM names WHERE id = $1", id).Scan(&name) |
| ... |
| if name.Valid { |
| // use name.String |
| } else { |
| // value is NULL |
| } |
| ``` |
| |
| Only [`NullBool`](https://golang.org/pkg/database/sql/#NullBool), [`NullFloat64`](https://golang.org/pkg/database/sql/#NullFloat64), [`NullInt64`](https://golang.org/pkg/database/sql/#NullInt64), [`NullInt32`](https://golang.org/pkg/database/sql/#NullInt32), [`NullString`](https://golang.org/pkg/database/sql/#NullString) and [`NullTime`](https://golang.org/pkg/database/sql/#NullTime) are implemented in |
| `database/sql`. Implementations of database-specific null types are left |
| to the database driver. User types supporting `NULL` can be created by implementing interfaces [`database/sql/driver.Valuer`](https://golang.org/pkg/database/sql/driver/#Valuer) and [`database/sql.Scanner`](https://golang.org/pkg/database/sql/#Scanner). |