Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
thcyron committed Mar 7, 2016
1 parent 314fc3a commit 609a1ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ query, args := sqlbuilder.Delete().
res, err := db.Exec(query, args...)
```

Supported Dialects
------------------
Dialects
--------

`sqlbuilder` supports building queries for MySQL, SQLite, and Postgres databases. You
can set the default dialect with:
Expand All @@ -77,7 +77,7 @@ sqlbuilder.DefaultDialect = sqlbuilder.Postgres
sqlbuilder.Select().From("...")...
```

or you can specify the dialect explicitly:
Or you can specify the dialect explicitly:

```go
sqlbuilder.Select().Dialect(sqlbuilder.Postgres).From("...")...
Expand Down

0 comments on commit 609a1ab

Please sign in to comment.