garm/vendor/gorm.io/driver/sqlite
Gabriel Adrian Samfira bbbe67bf7c Vendor packages and add Makefile
* Vendors packages
  * Adds a Makefile that uses docker to build a static binary against musl
using alpine linux.

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2022-06-30 10:20:32 +00:00
..
ddlmod.go Vendor packages and add Makefile 2022-06-30 10:20:32 +00:00
errors.go Vendor packages and add Makefile 2022-06-30 10:20:32 +00:00
License Vendor packages and add Makefile 2022-06-30 10:20:32 +00:00
migrator.go Vendor packages and add Makefile 2022-06-30 10:20:32 +00:00
README.md Vendor packages and add Makefile 2022-06-30 10:20:32 +00:00
sqlite.go Vendor packages and add Makefile 2022-06-30 10:20:32 +00:00

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.