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
docs: Replace remaining references to DinoSQL with sqlc
  • Loading branch information
twpayne committed Dec 11, 2019
commit a30791930cda4ba085aa2fa9b5a91e2821b41447
2 changes: 1 addition & 1 deletion examples/alter_table.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Schema modification

DinoSQL understands `ALTER TABLE` statements when parsing SQL.
sqlc understands `ALTER TABLE` statements when parsing SQL.

```sql
CREATE TABLE authors (
Expand Down
2 changes: 1 addition & 1 deletion examples/goose.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Goose

DinoSQL will ignore rollback statements when parsing
sqlc will ignore rollback statements when parsing
[Goose](https://github.com/pressly/goose) migrations.

```sql
Expand Down
2 changes: 1 addition & 1 deletion examples/json_tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE authors (
);
```

DinoSQL can generate structs with JSON tags. The JSON name for a field matches
sqlc can generate structs with JSON tags. The JSON name for a field matches
the column name in the database.

```go
Expand Down
2 changes: 1 addition & 1 deletion examples/prepared_query.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SELECT * FROM records
WHERE id = $1;
```

DinoSQL has an option to use perpared queries. These prepared queries also work
sqlc has an option to use perpared queries. These prepared queries also work
with transactions.

```go
Expand Down
2 changes: 1 addition & 1 deletion examples/returning.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Returning values

DinoSQL has full support for the `RETURNING` statement.
sqlc has full support for the `RETURNING` statement.

```sql
CREATE TABLE authors (
Expand Down
2 changes: 1 addition & 1 deletion examples/uuid.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE records (
```

The Go standard library does not come with a `uuid` package. For UUID support,
DinoSQL uses the excellent `github.com/google/uuid` package.
sqlc uses the excellent `github.com/google/uuid` package.

```go
package db
Expand Down