Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 312 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 312 Bytes

GORM Sqlite Driver

CI

USAGE

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 for details.