forked from MagicBane/Server
server side race/cass restrictions
This commit is contained in:
@@ -99,8 +99,8 @@ public class dbItemBaseHandler extends dbHandlerBase {
|
||||
public void LOAD_ALL_ITEM_REQUIREMENTS(){
|
||||
for(ItemBase itemBase : ItemBase._itemBaseByUUID.values()){
|
||||
try (Connection connection = DbManager.getConnection();
|
||||
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_item_requirements WHERE 'itemID' = ?")) {
|
||||
preparedStatement.setInt(1, itemBase.getUUID());
|
||||
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_item_requirements WHERE 'itemName' = ?")) {
|
||||
preparedStatement.setString(1, itemBase.getName());
|
||||
ResultSet rs = preparedStatement.executeQuery();
|
||||
//while(rs.next()) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user