(UUID uuid)
| 65 | } |
| 66 | |
| 67 | public void delete(UUID uuid) { |
| 68 | J.a(() -> { |
| 69 | try { |
| 70 | connection.createStatement().executeUpdate(String.format(DELETE_QUERY, uuid.toString())); |
| 71 | } catch (SQLException e) { |
| 72 | Adapt.error("Failed to delete data from the SQL server!"); |
| 73 | Adapt.error("\t" + e.getClass().getSimpleName() + (e.getMessage() != null ? ": " + e.getMessage() : "")); |
| 74 | } |
| 75 | }); |
| 76 | } |
| 77 | |
| 78 | public String fetchData(UUID uuid) { |
| 79 | try { |
nothing calls this directly
no test coverage detected