mine audit

This commit is contained in:
2024-04-18 20:28:57 -05:00
parent d09240d11a
commit 86d0254c2f
+16
View File
@@ -65,6 +65,22 @@ public class dbMineHandler extends dbHandlerBase {
} catch (SQLException e) {
Logger.error(e);
}
try (Connection connection = DbManager.getConnection();
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM obj_mine;")) {
ResultSet rs = preparedStatement.executeQuery();
int count = 0;
while(rs.next()){
count++;
}
if(count == 33){
int poop = 100;
}
} catch (SQLException e) {
Logger.error(e);
}
return mines;
}