|
@ -57,8 +57,6 @@ public class Games { |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
result += gameConsole + ", "; |
|
|
result += gameConsole + ", "; |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
@ -68,7 +66,7 @@ public class Games { |
|
|
} catch (SQLException e) { |
|
|
} catch (SQLException e) { |
|
|
e.printStackTrace(); |
|
|
e.printStackTrace(); |
|
|
} |
|
|
} |
|
|
// The substring removes the last New line in the String. |
|
|
|
|
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
return result.substring(0, result.length() - 2); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -88,9 +86,8 @@ public class Games { |
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (gamePublisherEu.equals(gamePublisherJp) && gamePublisherJp.equals(gamePublisherNa) && gamePublisherEu.equals(gamePublisherNa)) { |
|
|
|
|
|
|
|
|
if (gamePublisherEu.equals(gamePublisherJp) && gamePublisherJp.equals(gamePublisherNa) |
|
|
|
|
|
&& gamePublisherEu.equals(gamePublisherNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -101,7 +98,7 @@ public class Games { |
|
|
} catch (SQLException e) { |
|
|
} catch (SQLException e) { |
|
|
e.printStackTrace(); |
|
|
e.printStackTrace(); |
|
|
} |
|
|
} |
|
|
// The substring removes the last New line in the String. |
|
|
|
|
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
return result.substring(0, result.length() - 2); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -121,9 +118,8 @@ public class Games { |
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!gamePublisherEu.equals(gamePublisherJp) && !gamePublisherJp.equals(gamePublisherNa) && !gamePublisherEu.equals(gamePublisherNa)) { |
|
|
|
|
|
|
|
|
if (!gamePublisherEu.equals(gamePublisherJp) && !gamePublisherJp.equals(gamePublisherNa) |
|
|
|
|
|
&& !gamePublisherEu.equals(gamePublisherNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -134,7 +130,7 @@ public class Games { |
|
|
} catch (SQLException e) { |
|
|
} catch (SQLException e) { |
|
|
e.printStackTrace(); |
|
|
e.printStackTrace(); |
|
|
} |
|
|
} |
|
|
// The substring removes the last New line in the String. |
|
|
|
|
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
return result.substring(0, result.length() - 2); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -155,9 +151,9 @@ public class Games { |
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (gamePublisherEu.equals(gamePublisherJp) && gamePublisherJp.equals(gamePublisherNa) && gamePublisherEu.equals(gamePublisherNa) && gameDeveloper.equals(gamePublisherEu) && gameDeveloper.equals(gamePublisherJp) && gameDeveloper.equals(gamePublisherNa) ) { |
|
|
|
|
|
|
|
|
if (gamePublisherEu.equals(gamePublisherJp) && gamePublisherJp.equals(gamePublisherNa) |
|
|
|
|
|
&& gamePublisherEu.equals(gamePublisherNa) && gameDeveloper.equals(gamePublisherEu) |
|
|
|
|
|
&& gameDeveloper.equals(gamePublisherJp) && gameDeveloper.equals(gamePublisherNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -168,7 +164,7 @@ public class Games { |
|
|
} catch (SQLException e) { |
|
|
} catch (SQLException e) { |
|
|
e.printStackTrace(); |
|
|
e.printStackTrace(); |
|
|
} |
|
|
} |
|
|
// The substring removes the last New line in the String. |
|
|
|
|
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
return result.substring(0, result.length() - 2); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -189,18 +185,19 @@ public class Games { |
|
|
String gameReleaseNa = resultSet.getString("Game_Release_NA"); |
|
|
String gameReleaseNa = resultSet.getString("Game_Release_NA"); |
|
|
String gameReleaseAu = resultSet.getString("Game_Release_AU"); |
|
|
String gameReleaseAu = resultSet.getString("Game_Release_AU"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (gameReleaseAu == null) { |
|
|
if (gameReleaseAu == null) { |
|
|
if (gameReleaseEu.equals(gameReleaseJp) && gameReleaseJp.equals(gameReleaseNa) && gameReleaseEu.equals(gameReleaseNa)) { |
|
|
|
|
|
|
|
|
if (gameReleaseEu.equals(gameReleaseJp) && gameReleaseJp.equals(gameReleaseNa) |
|
|
|
|
|
&& gameReleaseEu.equals(gameReleaseNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
if (gameReleaseEu.equals(gameReleaseJp) && gameReleaseJp.equals(gameReleaseNa) && gameReleaseEu.equals(gameReleaseNa) && gameReleaseAu.equals(gameReleaseEu) && gameReleaseAu.equals(gameReleaseJp) && gameReleaseAu.equals(gameReleaseNa) ) { |
|
|
|
|
|
|
|
|
if (gameReleaseEu.equals(gameReleaseJp) && gameReleaseJp.equals(gameReleaseNa) |
|
|
|
|
|
&& gameReleaseEu.equals(gameReleaseNa) && gameReleaseAu.equals(gameReleaseEu) |
|
|
|
|
|
&& gameReleaseAu.equals(gameReleaseJp) && gameReleaseAu.equals(gameReleaseNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
statement.close(); |
|
|
statement.close(); |
|
|
connection.close(); |
|
|
connection.close(); |
|
@ -208,7 +205,7 @@ public class Games { |
|
|
} catch (SQLException e) { |
|
|
} catch (SQLException e) { |
|
|
e.printStackTrace(); |
|
|
e.printStackTrace(); |
|
|
} |
|
|
} |
|
|
// The substring removes the last New line in the String. |
|
|
|
|
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
return result.substring(0, result.length() - 2); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -229,18 +226,19 @@ public class Games { |
|
|
String gameReleaseNa = resultSet.getString("Game_Release_NA"); |
|
|
String gameReleaseNa = resultSet.getString("Game_Release_NA"); |
|
|
String gameReleaseAu = resultSet.getString("Game_Release_AU"); |
|
|
String gameReleaseAu = resultSet.getString("Game_Release_AU"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (gameReleaseAu == null) { |
|
|
if (gameReleaseAu == null) { |
|
|
if (!gameReleaseEu.equals(gameReleaseJp) && !gameReleaseJp.equals(gameReleaseNa) && !gameReleaseEu.equals(gameReleaseNa)) { |
|
|
|
|
|
|
|
|
if (!gameReleaseEu.equals(gameReleaseJp) && !gameReleaseJp.equals(gameReleaseNa) |
|
|
|
|
|
&& !gameReleaseEu.equals(gameReleaseNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
if (!gameReleaseEu.equals(gameReleaseJp) && !gameReleaseJp.equals(gameReleaseNa) && !gameReleaseEu.equals(gameReleaseNa) && !gameReleaseAu.equals(gameReleaseEu) && !gameReleaseAu.equals(gameReleaseJp) && !gameReleaseAu.equals(gameReleaseNa) ) { |
|
|
|
|
|
|
|
|
if (!gameReleaseEu.equals(gameReleaseJp) && !gameReleaseJp.equals(gameReleaseNa) |
|
|
|
|
|
&& !gameReleaseEu.equals(gameReleaseNa) && !gameReleaseAu.equals(gameReleaseEu) |
|
|
|
|
|
&& !gameReleaseAu.equals(gameReleaseJp) && !gameReleaseAu.equals(gameReleaseNa)) { |
|
|
result += gameName + ", "; |
|
|
result += gameName + ", "; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
statement.close(); |
|
|
statement.close(); |
|
|
connection.close(); |
|
|
connection.close(); |
|
@ -248,7 +246,7 @@ public class Games { |
|
|
} catch (SQLException e) { |
|
|
} catch (SQLException e) { |
|
|
e.printStackTrace(); |
|
|
e.printStackTrace(); |
|
|
} |
|
|
} |
|
|
// The substring removes the last New line in the String. |
|
|
|
|
|
|
|
|
|
|
|
return result.substring(0, result.length() - 2); |
|
|
return result.substring(0, result.length() - 2); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |