mirror of
https://github.com/glebarez/sqlite.git
synced 2025-09-27 03:55:53 +08:00
cf6cd11e949ab8e7e97682d03bf1a608ddf2ec4d

* fix: ErrForeignKeyViolated error constant * refactor: added error codes reference --------- Co-authored-by: Saeid Saeidee <s.saeidee@sensysgatso.com>
GORM Sqlite Driver
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.
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{})
Description
Package sqlite is a CGo-free port of SQLite/SQLite3.
SQLite is an in-process implementation of a self-contained, serverless, zero-configuration, transactional SQL database engine.
Readme
585 KiB
Languages
Go
100%