Executes a MySQL Update with a PreparedStatement and given fields. @param query The Prepared Statement Query. Use ? for fields. @param fields The Fields that should be inserted into the Statement.
(final String query, final Object... fields)
| 71 | * @param fields The Fields that should be inserted into the Statement. |
| 72 | */ |
| 73 | public void update(final String query, final Object... fields) { |
| 74 | update(null, query, fields); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Executes a MySQL Update with a PreparedStatement and given fields. |