Refactored to remove abstraction.

This commit is contained in:
2023-05-20 19:14:01 -04:00
parent 4daee03f0d
commit a683eb6290
3 changed files with 26 additions and 26 deletions
@@ -55,7 +55,7 @@ public class dbBlueprintHandler extends dbHandlerBase {
int recordsRead = 0;
try (Connection connection = DbManager.getConnection();
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM `obj_account` WHERE `acct_uname`=?")) {
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_building_blueprint")) {
ResultSet rs = preparedStatement.executeQuery();