Skip to content

Commit

Permalink
Use MariaDB connector
Browse files Browse the repository at this point in the history
  • Loading branch information
Simonsator committed Oct 12, 2023
1 parent fe6a0aa commit c9cc973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spigot-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<dependency>
<groupId>de.simonsator</groupId>
<artifactId>Party-and-Friends-MySQL-Edition-Spigot-API</artifactId>
<version>1.5.4-RELEASE</version>
<version>1.5.5-RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MySQLConnection extends SQLCommunication {
private final String TABLE_PREFIX;

public MySQLConnection(MySQLData pMySQLData) {
super(pMySQLData.DATABASE, "jdbc:mysql://" + pMySQLData.HOST + ":" + pMySQLData.PORT, pMySQLData.USERNAME, pMySQLData.PASSWORD, pMySQLData.USE_SSL);
super(pMySQLData.DATABASE, pMySQLData.DRIVER_URL + pMySQLData.HOST + ":" + pMySQLData.PORT, pMySQLData.USERNAME, pMySQLData.PASSWORD, pMySQLData.USE_SSL);
this.TABLE_PREFIX = pMySQLData.TABLE_PREFIX;
try {
tableExists();
Expand Down

0 comments on commit c9cc973

Please sign in to comment.