Constructs a key to uniquely identify a prepared statement. @param sql The SQL statement. @deprecated Use #PStmtKey(String, String, String).
(final String sql)
| 129 | * @deprecated Use {@link #PStmtKey(String, String, String)}. |
| 130 | */ |
| 131 | @Deprecated |
| 132 | public PStmtKey(final String sql) { |
| 133 | this(sql, null, StatementType.PREPARED_STATEMENT); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Constructs a key to uniquely identify a prepared statement. |