Constructor @param sql @param substitutions
(String sql, int... substitutions)
| 48 | * @param substitutions |
| 49 | */ |
| 50 | public SQLStmt(String sql, int... substitutions) { |
| 51 | this.substitutions = substitutions; |
| 52 | this.setSQL(sql); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Magic SQL setter! Each occurrence of the pattern "??" will be replaced by a string of repeated |