BoolToInt converts a Go bool to a query parameter value. SQLite: 0/1 (integers) PostgreSQL: true/false (native booleans)
(b bool)
| 67 | // SQLite: 0/1 (integers) |
| 68 | // PostgreSQL: true/false (native booleans) |
| 69 | BoolToInt(b bool) interface{} |
| 70 | |
| 71 | // ILike returns the case-insensitive LIKE operator. |
| 72 | // SQLite: LIKE (case-insensitive by default) |
no outgoing calls