Skip to content

Commit 1007940

Browse files
committed
Include pure go sqlite driver in README, close #77 #93
1 parent c86933b commit 1007940

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,16 @@ db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
1515
```
1616

1717
Checkout [https://gorm.io](https://gorm.io) for details.
18+
19+
### Pure go Sqlite Driver
20+
21+
checkout [https://github.com/glebarez/sqlite](https://github.com/glebarez/sqlite) for details
22+
23+
```go
24+
import (
25+
"github.com/glebarez/sqlite"
26+
"gorm.io/gorm"
27+
)
28+
29+
db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
30+
```

0 commit comments

Comments
 (0)