• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H28-Oct-2021-

LicenseH A D28-Oct-20211.1 KiB

README.mdH A D28-Oct-2021312

ddlmod.goH A D28-Oct-20212.8 KiB

ddlmod_test.goH A D28-Oct-20215 KiB

errors.goH A D28-Oct-2021277

go.modH A D28-Oct-2021193

go.sumH A D28-Oct-20211.7 KiB

migrator.goH A D28-Oct-20219.9 KiB

sqlite.goH A D28-Oct-20215 KiB

sqlite_test.goH A D28-Oct-20212.9 KiB

README.md

1# GORM Sqlite Driver
2
3![CI](https://github.com/go-gorm/sqlite/workflows/CI/badge.svg)
4
5## USAGE
6
7```go
8import (
9  "gorm.io/driver/sqlite"
10  "gorm.io/gorm"
11)
12
13// github.com/mattn/go-sqlite3
14db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
15```
16
17Checkout [https://gorm.io](https://gorm.io) for details.
18