Skip to content

Commit

Permalink
Include pure go sqlite driver in README, close #77 #93
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhu committed Oct 9, 2022
1 parent c86933b commit 1007940
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Expand Up @@ -15,3 +15,16 @@ db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
```

Checkout [https://gorm.io](https://gorm.io) for details.

### Pure go Sqlite Driver

checkout [https://github.com/glebarez/sqlite](https://github.com/glebarez/sqlite) for details

```go
import (
"github.com/glebarez/sqlite"
"gorm.io/gorm"
)

db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
```

0 comments on commit 1007940

Please sign in to comment.