Builder is a helper for building SQL queries with named parameters (jmoiron/sqlx and psql style for the moment)
| 8 | |
| 9 | // Builder is a helper for building SQL queries with named parameters (jmoiron/sqlx and psql style for the moment) |
| 10 | type Builder struct { |
| 11 | query strings.Builder |
| 12 | params []string |
| 13 | } |
| 14 | |
| 15 | var ( |
| 16 | tagRe = regexp.MustCompile(`:{1,2}(\w+)`) |
nothing calls this directly
no outgoing calls
no test coverage detected