public class MixedParameterSql
extends Object
Convenience class to allow use of (:mylabel) for SQL parameters in addition to
positional (?) parameters. This doesn't do any smart parsing of the SQL, it is just
looking for ':' and '?' characters. If the SQL needs to include an actual ':' or '?'
character, use two of them ('::' or '??'), and they will be replaced with a
single ':' or '?'.
- Author:
- garricko