flamenco/pkg/gorm-modernc-sqlite
Sybren A. Stüvel bf4cc9b056 Add notice to our SQLite Gorm driver
The Gorm driver README now links to the original code, which was modified
to use a different SQLite library.
2022-03-03 11:52:43 +01:00
..
2022-03-03 11:52:43 +01:00

GORM Sqlite Driver

This is a clone of the Gorm SQLite driver, adjusted by Sybren Stüvel sybren@blender.org to use modernc.org/sqlite instead of the SQLite C-bindings wrapper.

USAGE

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

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

Checkout https://gorm.io for details.