Cursor returns a database cursor, cursor is especially useful when handling big amount of rows of data
(clauses ...Clause)
| 123 | Exec(query string, params ...interface{}) errors.Error |
| 124 | // Cursor returns a database cursor, cursor is especially useful when handling big amount of rows of data |
| 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!! |
no outgoing calls
no test coverage detected