Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 600 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 600 Bytes

GORM Sqlite Driver

CI

USAGE

import (
  sqlcipher "github.com/iAloy/gorm-sqlcipher"
  "gorm.io/gorm"
)

// github.com/mutecomm/go-sqlcipher
db, err := gorm.Open(sqlcipher.Open("gorm.db"), &gorm.Config{})

Checkout https://gorm.io for details.

Pure go Sqlite Driver

checkout https://github.com/glebarez/sqlite for details

import (
  "github.com/glebarez/sqlite"
  "gorm.io/gorm"
)

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