Updated MySQL Methods, Tests and Information accordingly. (High security risk btw)

This commit is contained in:
Riley Schneider
2025-12-03 20:15:28 +01:00
parent d3488f1f1c
commit 57144fa772
21 changed files with 53 additions and 8 deletions

View File

@@ -1,7 +1,9 @@
package hhn.temp.project.provider;
import java.io.IOException;
import java.nio.file.Path;
import java.sql.SQLException;
public interface Database {
public void connect() throws SQLException;
public void connect() throws SQLException, IOException;
}