Skip to content

Commit

Permalink
jsqlgen
Browse files Browse the repository at this point in the history
  • Loading branch information
Osiris-Team committed Nov 5, 2023
1 parent 5bb6ea7 commit f710546
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/osiris/jsqlgen/payhook/Database.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It holds the database credentials (set by you at first run of jSQL-Gen).<br>
public class Database{
public static String rawUrl = com.osiris.payhook.PayHook.databaseRawUrl;
public static String url = com.osiris.payhook.PayHook.databaseUrl;
public static String name = com.osiris.payhook.PayHook.databaseName;
public static String name = "payhook";
public static String username = com.osiris.payhook.PayHook.databaseUsername;
public static String password = com.osiris.payhook.PayHook.databasePassword;
private static final List<Connection> availableConnections = new ArrayList<>();
Expand All @@ -40,6 +40,7 @@ public static void create() {
try {
driverClass = Class.forName(driverClassName);
Objects.requireNonNull(driverClass);
break; // No need to continue, since registration was a success
} catch (Exception e) {
lastException = e;
}
Expand Down

0 comments on commit f710546

Please sign in to comment.