mirror of
https://git.swurl.xyz/swirl/link.git
synced 2023-11-08 10:44:52 +02:00
18 lines
312 B
Markdown
18 lines
312 B
Markdown
|
# GORM Sqlite Driver
|
||
|
|
||
|
![CI](https://github.com/go-gorm/sqlite/workflows/CI/badge.svg)
|
||
|
|
||
|
## USAGE
|
||
|
|
||
|
```go
|
||
|
import (
|
||
|
"gorm.io/driver/sqlite"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
// github.com/mattn/go-sqlite3
|
||
|
db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
|
||
|
```
|
||
|
|
||
|
Checkout [https://gorm.io](https://gorm.io) for details.
|