MCPcopy Create free account
hub / github.com/kataras/iris / Bind

Function Bind

x/sqlx/sqlx.go:64–66  ·  view source on GitHub ↗

Bind sets "dst" to the result of "src" and reports any errors.

(dst interface{}, src *sql.Rows)

Source from the content-addressed store, hash-verified

62
63// Bind sets "dst" to the result of "src" and reports any errors.
64func Bind(dst interface{}, src *sql.Rows) error {
65 return DefaultSchema.Bind(dst, src)
66}
67
68// Register caches a struct value to the schema.
69func (s *Schema) Register(tableName string, value interface{}) *Schema {

Callers 1

listEventsFunction · 0.92

Calls 1

BindMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…