Categorygithub.com/iAloy/gorm-sqlcipher
modulepackage
1.5.6-1
Repository: https://github.com/ialoy/gorm-sqlcipher.git
Documentation: pkg.go.dev

# README

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{})

# Functions

No description provided by the author
No description provided by the author

# Constants

DriverName is the default driver name for SQLite.

# Variables

No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author