Detected 1 occurrence(s) of ‘mysql:\/\/’: public class SQLFunctions { Main plugin; // JDBC driver name and database URL static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://76.74.200.77/playerdata"; // Database credentials static final String USER = "newbreed"; static final String PASS = "newbreedservertesting"; Statement stmt; Connection conn; public SQLFunctions(Main plugin){ this.plugin = plugin; […]
↧