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