File: 090_mariadb.patch

package info (click to toggle)
jabref 3.8.2%2Bds-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,516 kB
  • sloc: java: 114,177; xml: 3,985; sh: 291; python: 283; perl: 200; ruby: 22; makefile: 7
file content (15 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: update jabref to use mariadb driver for MySQL connections
Author: tony mancill <tmancill@debian.org>
Forwarded: not-needed

--- a/src/main/java/net/sf/jabref/shared/DBMSType.java
+++ b/src/main/java/net/sf/jabref/shared/DBMSType.java
@@ -10,7 +10,7 @@
 
     MYSQL(
             "MySQL",
-            "com.mysql.jdbc.Driver",
+            "org.mariadb.jdbc.Driver",
             "jdbc:mysql://%s:%d/%s", 3306),
     ORACLE(
             "Oracle",