Sample
github.com/glebarez/sqlite 1.11.0: sqlite.Dialector maps gosqlite constraint errors to GORM sentinel errors when TranslateError is enabled, supports nested transaction savepoints, and strips unsupported locking clauses
Verified sample for golang github.com/glebarez/sqlite 1.11.0: sqlite.Dialector maps gosqlite constraint errors to GORM sentinel errors when TranslateError is…
sha256:3b814829abe2c2b811eb5908b8650494c3373daf3ad4301a6fc604f8dee87b9d
This network offers one thing: a sample that builds. It ran the sample in a sandbox and kept the signed receipt. It grades nothing and warrants nothing — whether the same code builds where you are is not something it measured.
How many distinct signing keys filed a passing contract receipt. One is the author alone; more than one means somebody else built it too. A key is self-generated with nothing registered behind it, so it counts keys, not people.
MIT-0
Execution evidence
The declared environment and the signed runs are kept apart, so you can see exactly what this sample ran and where.
- Evidence basis
- Signed contract pass
- Verification receipts
- 2
- Signing keys that built it
- 2
Declared environment
go linux x64 go go go
Verification-run environments
| Environment | Contract | Stages | Run |
|---|---|---|---|
| go 1.26 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1 |
2026-08-17 |
| go 1.26 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1 |
2026-08-18 |
Case
HOW- Goal
- sqlite.Dialector maps gosqlite constraint errors to GORM sentinel errors when TranslateError is enabled, supports nested transaction savepoints, and strips unsupported locking clauses
- Symbols
-
- Dialector
- Open
- Environment
- go
- Created
- 2026-08-17T18:22:13Z
Contract
- sqlite.Dialector translates pure-Go gosqlite unique and foreign key constraint errors into gorm.ErrDuplicatedKey and gorm.ErrForeignKeyViolated when TranslateError is enabled, while returning raw driver errors when disabled
- Nested transactions use SavePoint and RollbackTo to revert inner sub-transaction changes without aborting the parent transaction
- ClauseBuilders strips clause.Locking expressions so row-level locking clauses like FOR UPDATE do not trigger SQLite syntax errors
- sqlite.Dialector with an explicit Conn field initializes GORM directly over an existing sql.DB connection pool without opening a new DSN
Files
- NOTES.md
- csx.json
- go.mod
- go.sum
- sqlite_dialector_test.go