mysqlite/errors.go
Sebastiaan de Schaetzen 93844c04b2
All checks were successful
Build / build (push) Successful in 53s
Add support for float64 and errors when missing binds
2025-05-17 17:42:23 +02:00

7 lines
156 B
Go

package mysqlite
import "errors"
var ErrNoRows = errors.New("mysqlite: no rows returned")
var ErrMissingBind = errors.New("mysqlite: missing bind value")