Half of features implemented #2

Merged
andrewlalis merged 19 commits from repo_creation into master 2018-08-28 18:26:28 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 3ea182fb4c - Show all commits

View File

@ -123,7 +123,8 @@ public class Database {
PreparedStatement stmt = this.connection.prepareStatement(sql);
stmt.setInt(1, ta.getNumber());
stmt.setInt(2, teamId);
return stmt.execute();
stmt.execute();
return true;
} catch (SQLException e) {
e.printStackTrace();
return false;
@ -155,7 +156,8 @@ public class Database {
stmt.setInt(1, student.getNumber());
stmt.setInt(2, teamId);
stmt.setInt(3, student.getPreferredPartners().size() > 0 ? 1 : 0);
return stmt.execute();
stmt.execute();
return true;
} catch (SQLException e) {
e.printStackTrace();
return false;