Sync with L2jServer HighFive Jul 25th 2015.
This commit is contained in:
@ -27,8 +27,8 @@ import java.util.Base64;
|
||||
import java.util.Scanner;
|
||||
|
||||
import com.l2jserver.Config;
|
||||
import com.l2jserver.L2DatabaseFactory;
|
||||
import com.l2jserver.Server;
|
||||
import com.l2jserver.commons.database.pool.impl.ConnectionFactory;
|
||||
|
||||
/**
|
||||
* This class SQL Account Manager
|
||||
@ -168,7 +168,7 @@ public class SQLAccountManager
|
||||
}
|
||||
q = q.concat(" ORDER BY login ASC");
|
||||
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
try (Connection con = ConnectionFactory.getInstance().getConnection();
|
||||
PreparedStatement ps = con.prepareStatement(q);
|
||||
ResultSet rset = ps.executeQuery())
|
||||
{
|
||||
@ -189,7 +189,7 @@ public class SQLAccountManager
|
||||
|
||||
private static void addOrUpdateAccount(String account, String password, String level)
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
try (Connection con = ConnectionFactory.getInstance().getConnection();
|
||||
PreparedStatement ps = con.prepareStatement("REPLACE accounts(login, password, accessLevel) VALUES (?, ?, ?)"))
|
||||
{
|
||||
MessageDigest md = MessageDigest.getInstance("SHA");
|
||||
@ -219,7 +219,7 @@ public class SQLAccountManager
|
||||
|
||||
private static void changeAccountLevel(String account, String level)
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
try (Connection con = ConnectionFactory.getInstance().getConnection();
|
||||
PreparedStatement ps = con.prepareStatement("UPDATE accounts SET accessLevel = ? WHERE login = ?"))
|
||||
{
|
||||
ps.setString(1, level);
|
||||
@ -243,7 +243,7 @@ public class SQLAccountManager
|
||||
|
||||
private static void deleteAccount(String account)
|
||||
{
|
||||
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
|
||||
try (Connection con = ConnectionFactory.getInstance().getConnection();
|
||||
PreparedStatement ps = con.prepareStatement("DELETE FROM accounts WHERE login = ?"))
|
||||
{
|
||||
ps.setString(1, account);
|
||||
|
Reference in New Issue
Block a user