SQLValue returns the value to use in SQL WHERE clauses (e.g., WHERE id > ?).
()
| 17 | type PaginationKey interface { |
| 18 | // SQLValue returns the value to use in SQL WHERE clauses (e.g., WHERE id > ?). |
| 19 | SQLValue() interface{} |
| 20 | // ColumnName returns the column name this key belongs to, if known. |
| 21 | ColumnName() string |
| 22 | // Compare returns -1, 0, or 1 if this key is less than, equal to, or greater than other. |
no outgoing calls