forked from MagicBane/Server
bardiel's requested slot lookup query amendment update(again)
This commit is contained in:
@@ -32,10 +32,14 @@ public class dbBuildingLocationHandler extends dbHandlerBase {
|
|||||||
ArrayList<BuildingLocation> buildingLocations = new ArrayList<>();
|
ArrayList<BuildingLocation> buildingLocations = new ArrayList<>();
|
||||||
|
|
||||||
try (Connection connection = DbManager.getConnection();
|
try (Connection connection = DbManager.getConnection();
|
||||||
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `MIN(ID)`,`BuildingID`,`slot`,`MIN(type)`,`MIN(unknown)`,`MIN(locX)`,`MIN(locY)`,`MIN(locZ)`,`MIN(w)`,`MIN(rotX)`,`MIN(rotY)`,`MIN(rotZ)` FROM static_building_location " +
|
PreparedStatement preparedStatement = connection.prepareStatement(
|
||||||
|
"SELECT MIN(ID), BuildingID, slot, MIN(type), MIN(unknown), MIN(locX), MIN(locY), MIN(locZ), " +
|
||||||
|
"MIN(w), MIN(rotX), MIN(rotY), MIN(rotZ) " +
|
||||||
|
"FROM static_building_location " +
|
||||||
"WHERE type IN (6, 8) " +
|
"WHERE type IN (6, 8) " +
|
||||||
"GROUP BY BuildingID, slot " +
|
"GROUP BY BuildingID, slot " +
|
||||||
"ORDER BY BuildingID, slot ASC;")) {
|
"ORDER BY BuildingID, slot ASC;"
|
||||||
|
)) {
|
||||||
|
|
||||||
ResultSet rs = preparedStatement.executeQuery();
|
ResultSet rs = preparedStatement.executeQuery();
|
||||||
buildingLocations = getObjectsFromRs(rs, 20);
|
buildingLocations = getObjectsFromRs(rs, 20);
|
||||||
|
|||||||
Reference in New Issue
Block a user