Source File
error_translator.go
Belonging Package
github.com/ncruces/go-sqlite3/gormlite
package gormliteimport ()// Translate it will translate the error to native gorm errors.func (_Dialector) ( error) error {switch {caseerrors.Is(, sqlite3.CONSTRAINT_UNIQUE),errors.Is(, sqlite3.CONSTRAINT_PRIMARYKEY):return gorm.ErrDuplicatedKeycaseerrors.Is(, sqlite3.CONSTRAINT_FOREIGNKEY):return gorm.ErrForeignKeyViolated}return}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |