mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Whoops, forgot to fix it for SQLite :3
This commit is contained in:
parent
41a40954fb
commit
5ca8bddd3b
@ -621,17 +621,17 @@ public class PlotMain extends JavaPlugin {
|
|||||||
connection = new SQLite(this, Settings.DB.SQLITE_DB + ".db").openConnection();
|
connection = new SQLite(this, Settings.DB.SQLITE_DB + ".db").openConnection();
|
||||||
{
|
{
|
||||||
DatabaseMetaData meta = connection.getMetaData();
|
DatabaseMetaData meta = connection.getMetaData();
|
||||||
ResultSet res = meta.getTables(null, null, "plot", null);
|
ResultSet res = meta.getTables(null, null, Settings.DB.PREFIX + "plot", null);
|
||||||
if (!res.next()) {
|
if (!res.next()) {
|
||||||
DBFunc.createTables("sqlite", true);
|
DBFunc.createTables("sqlite", true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
res = meta.getTables(null, null, "plot_trusted", null);
|
res = meta.getTables(null, null, Settings.DB.PREFIX + "plot_trusted", null);
|
||||||
if (!res.next()) {
|
if (!res.next()) {
|
||||||
DBFunc.createTables("sqlite", false);
|
DBFunc.createTables("sqlite", false);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
res = meta.getTables(null, null, "plot_ratings", null);
|
res = meta.getTables(null, null, Settings.DB.PREFIX + "plot_ratings", null);
|
||||||
if (!res.next()) {
|
if (!res.next()) {
|
||||||
DBFunc.createTables("sqlite", false);
|
DBFunc.createTables("sqlite", false);
|
||||||
}
|
}
|
||||||
@ -1208,7 +1208,7 @@ public class PlotMain extends JavaPlugin {
|
|||||||
options.put("mysql.user", "root");
|
options.put("mysql.user", "root");
|
||||||
options.put("mysql.password", "password");
|
options.put("mysql.password", "password");
|
||||||
options.put("mysql.database", "plot_db");
|
options.put("mysql.database", "plot_db");
|
||||||
options.put("prefix", "");
|
options.put("prefix", "plotsquared");
|
||||||
for (Entry<String, Object> node : options.entrySet()) {
|
for (Entry<String, Object> node : options.entrySet()) {
|
||||||
if (!storage.contains(node.getKey())) {
|
if (!storage.contains(node.getKey())) {
|
||||||
storage.set(node.getKey(), node.getValue());
|
storage.set(node.getKey(), node.getValue());
|
||||||
|
Loading…
Reference in New Issue
Block a user