Switch to mysql in TagConnection.java

This commit is contained in:
Len 2023-07-21 22:26:03 +02:00
parent fc9030037c
commit fd89f29064

View File

@ -46,8 +46,8 @@ public class TagConnection
{
return;
}
Class.forName("org.mariadb.jdbc.Driver");
connection = DriverManager.getConnection("jdbc:mariadb://" + this.host + ":" + this.port + "/" + this.database, this.username, this.password);
// Class.forName("org.mariadb.jdbc.Driver");
connection = DriverManager.getConnection("jdbc:mysql://" + this.host + ":" + this.port + "/" + this.database, this.username, this.password);
}
}