Categorygithub.com/sohaha/gorm-sqlite
repositorypackage
0.0.0-20220323075758-ca7da79f9a58
Repository: https://github.com/sohaha/gorm-sqlite.git
Documentation: pkg.go.dev

# README

GORM Sqlite Driver

CI

USAGE

import (
  "gorm.io/sohaha/gorm-sqlite"
  "gorm.io/gorm"
)

db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
# If you need a GCC
go build --tags gcc