Categorygithub.com/Potterli20/sqlite
repositorypackage
0.0.0-20241206032708-f1a62402551b
Repository: https://github.com/potterli20/sqlite.git
Documentation: pkg.go.dev

# README

This is a fork of github.com/yevgenypats/sqlite This is a fork of github.com/go-gorm/sqlite

That works with modernc.org/sqlite which is a pure-go sqlite implementation. Obviously, because modernc.org/sqlite is a re-implementation of sqlite there might be missing features and stability issues. It should work for development or simple use-cases.

GORM Sqlite Driver

CI

USAGE

import (
  "gorm.io/cloudquery/sqlite"
  "gorm.io/gorm"
)

// gitlab.com/modernc.org/sqlite
db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})

Checkout https://gorm.io for details.