Update database credentials

This commit is contained in:
P0nk
2021-04-02 13:52:44 +02:00
parent 5d75f4a53a
commit 2873d0d031
20 changed files with 40 additions and 40 deletions

View File

@@ -50,8 +50,8 @@ import tools.Pair;
public class MapleCashDropFetcher {
static String host = "jdbc:mysql://localhost:3306/cosmic";
static String driver = "com.mysql.jdbc.Driver";
static String username = "snail";
static String password = "shell";
static String username = "cosmic_server";
static String password = "snailshell";
static String wzPath = "../../wz";

View File

@@ -10,8 +10,8 @@ import java.sql.SQLException;
*/
public class DatabaseConnection {
private static String DB_URL = "jdbc:mysql://localhost:3306/cosmic";
private static String DB_USER = "snail";
private static String DB_PASS = "shell";
private static String DB_USER = "cosmic_server";
private static String DB_PASS = "snailshell";
public static final int RETURN_GENERATED_KEYS = 1;