https://github.com/go-gorm/sqlite
GORM sqlite driver
https://github.com/go-gorm/sqlite
gorm-sqlite-driver
Last synced: about 1 year ago
JSON representation
GORM sqlite driver
- Host: GitHub
- URL: https://github.com/go-gorm/sqlite
- Owner: go-gorm
- License: mit
- Created: 2020-06-02T01:25:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-07T16:21:45.000Z (about 1 year ago)
- Last Synced: 2025-05-10T23:31:37.671Z (about 1 year ago)
- Topics: gorm-sqlite-driver
- Language: Go
- Homepage:
- Size: 118 KB
- Stars: 199
- Watchers: 3
- Forks: 203
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
README
# GORM Sqlite Driver

## 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.
### 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{})
```