QueryProvider defines the interface for querys used by RunLimitedVariablesQuery.
| 121 | |
| 122 | // QueryProvider defines the interface for querys used by RunLimitedVariablesQuery. |
| 123 | type QueryProvider interface { |
| 124 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |
| 125 | } |
| 126 | |
| 127 | // SQLite3MaxVariables is the default maximum number of host parameters in a single SQL statement |
| 128 | // SQLlite can handle. See https://www.sqlite.org/limits.html for more information. |
no outgoing calls
no test coverage detected