mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
17 lines
383 B
Markdown
17 lines
383 B
Markdown
# GORM SQLite Driver
|
|
|
|
[](https://pkg.go.dev/github.com/ncruces/go-sqlite3/gormlite)
|
|
|
|
## Usage
|
|
|
|
```go
|
|
import (
|
|
_ "github.com/ncruces/go-sqlite3/embed"
|
|
"github.com/ncruces/go-sqlite3/gormlite"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
db, err := gorm.Open(gormlite.Open("gorm.db"), &gorm.Config{})
|
|
```
|
|
|
|
Checkout [https://gorm.io](https://gorm.io) for details. |