final class SqlInterpolator(sc: StringContext) extends AnyVal
String interpolator for SQL literals. An expression of the form sql".. $a ... $b ..." with interpolated values of type A and B (which must have instances of Put) yields a value of type Fragment.
Interpolator for a statement fragment that can contain interpolated values. When inserted into the final SQL statement this fragment will be followed by a space. This is normally what you want, and it makes it easier to concatenate fragments because you don't need to think about intervening whitespace. If you do not want this behavior, use fr0.
Interpolator for a statement fragment that can contain interpolated values. When inserted into the final SQL statement this fragment will be followed by a space. This is normally what you want, and it makes it easier to concatenate fragments because you don't need to think about intervening whitespace. If you do not want this behavior, use fr0.