(ctx context.Context, query string, args ...interface{})
| 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 |
no outgoing calls
no test coverage detected