From aa01fde5a053cbc5c4cc0501caa3938751df71e0 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Thu, 23 Jan 2025 18:21:44 +0100 Subject: [PATCH] Fix locale --- CommonCore/SQL/src/de/steamwar/sql/internal/Statement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/internal/Statement.java b/CommonCore/SQL/src/de/steamwar/sql/internal/Statement.java index 3d6a49b2..2621da6b 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/internal/Statement.java +++ b/CommonCore/SQL/src/de/steamwar/sql/internal/Statement.java @@ -62,7 +62,7 @@ public class Statement implements AutoCloseable { String user = properties.getProperty("user"); String password = properties.getProperty("password"); - PRODUCTION_DATABASE = "core".equals(properties.getProperty("database")); + PRODUCTION_DATABASE = "production".equals(properties.getProperty("database")); MAX_CONNECTIONS = SQLConfig.impl.maxConnections(); conProvider = () -> { try {