Merge pull request #2654 from linuxdaemon/v3.0+fix-mariadb-driver-pkg
Fix MariaDB Driver package name Thanks!
This commit is contained in:
commit
4a5e14ee73
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ public class MariaDBMapStorage extends MapStorage {
|
|||
connectionString = "jdbc:mariadb://" + hostname + ":" + port + "/" + database + "?allowReconnect=true";
|
||||
Log.info("Opening MariaDB database " + hostname + ":" + port + "/" + database + " as map store");
|
||||
try {
|
||||
Class.forName("com.mariadb.jdbc.Driver");
|
||||
Class.forName("org.mariadb.jdbc.Driver");
|
||||
// Initialize/update tables, if needed
|
||||
if(!initializeTables()) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue