Categorygithub.com/ncruces/go-sqlite3/gormlite
modulepackage
0.18.0
Repository: https://github.com/ncruces/go-sqlite3.git
Documentation: pkg.go.dev

# README

GORM SQLite Driver

Go Reference

Usage

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

# Functions

Open opens a GORM dialector from a data source name.
Open opens a GORM dialector from a database handle.