Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorials/getting-started-mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Before this code will compile you'll need to fetch the relevant MySQL driver:

```shell
go get github.com/go-sql-driver/mysql
go build ./...
go build .
```

The program should compile without errors. To make that possible, sqlc generates
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getting-started-postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ package, but in this tutorial we've used `pgx/v5`:

```shell
go get github.com/jackc/pgx/v5
go build ./...
go build .
```

The program should compile without errors. To make that possible, sqlc generates
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getting-started-sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Before this code will compile you'll need to fetch the relevant SQLite driver:

```shell
go get modernc.org/sqlite
go build ./...
go build .
```

The program should compile without errors, and run successfully. To make that
Expand Down
Loading