Fetch loads row data from `cursor` into `dst`
(cursor Rows, dst interface{})
| 125 | Cursor(clauses ...Clause) (Rows, errors.Error) |
| 126 | // Fetch loads row data from `cursor` into `dst` |
| 127 | Fetch(cursor Rows, dst interface{}) errors.Error |
| 128 | // All loads matched rows from database to `dst`, USE IT WITH CAUTIOUS!! |
| 129 | All(dst interface{}, clauses ...Clause) errors.Error |
| 130 | // First loads the first matched row from database to `dst`, error will be returned if no records were found |
no outgoing calls