PlaceholderFormat is the interface that wraps the ReplacePlaceholders method. ReplacePlaceholders takes a SQL statement and replaces each question mark placeholder with a (possibly different) SQL placeholder.
| 11 | // ReplacePlaceholders takes a SQL statement and replaces each question mark |
| 12 | // placeholder with a (possibly different) SQL placeholder. |
| 13 | type PlaceholderFormat interface { |
| 14 | ReplacePlaceholders(sql string) (string, error) |
| 15 | } |
| 16 | |
| 17 | type placeholderDebugger interface { |
| 18 | debugPlaceholder() string |
no outgoing calls
no test coverage detected
searching dependent graphs…