|
|
@ -1701,4 +1701,62 @@ public class Games { |
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String checkEsrbT() { |
|
|
|
String result = ""; |
|
|
|
String query = "SELECT Game_Name, Game_ESRB_Rating FROM Games"; |
|
|
|
|
|
|
|
try { |
|
|
|
Connection connection = DriverManager.getConnection(databaseURL); |
|
|
|
|
|
|
|
Statement statement = connection.createStatement(); |
|
|
|
ResultSet resultSet = statement.executeQuery(query); |
|
|
|
|
|
|
|
while (resultSet.next()) { |
|
|
|
String gameName = resultSet.getString("Game_Name"); |
|
|
|
String gameEsrb = resultSet.getString("Game_ESRB_Rating"); |
|
|
|
|
|
|
|
if (gameEsrb.equals("T")) { |
|
|
|
result += gameName + ", "; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
statement.close(); |
|
|
|
connection.close(); |
|
|
|
|
|
|
|
} catch (SQLException e) { |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String checkEsrbM() { |
|
|
|
String result = ""; |
|
|
|
String query = "SELECT Game_Name, Game_ESRB_Rating FROM Games"; |
|
|
|
|
|
|
|
try { |
|
|
|
Connection connection = DriverManager.getConnection(databaseURL); |
|
|
|
|
|
|
|
Statement statement = connection.createStatement(); |
|
|
|
ResultSet resultSet = statement.executeQuery(query); |
|
|
|
|
|
|
|
while (resultSet.next()) { |
|
|
|
String gameName = resultSet.getString("Game_Name"); |
|
|
|
String gameEsrb = resultSet.getString("Game_ESRB_Rating"); |
|
|
|
|
|
|
|
if (gameEsrb.equals("M")) { |
|
|
|
result += gameName + ", "; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
statement.close(); |
|
|
|
connection.close(); |
|
|
|
|
|
|
|
} catch (SQLException e) { |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
|
} |
|
|
|
} |