Skip to content

Commit

Permalink
better jdbc url defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
aeberhart committed May 21, 2024
1 parent 1daa885 commit 8e9d5f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ public class SQLDatabase extends AbstractDatabase {
/**
* JSON config field
*/
@JsonSchema(choices = {"jdbc:postgresql://your_host:5432/your_database",
"jdbc:h2:tcp:your_host:9092/path/your_database", "jdbc:sqlite:path/your_database.db"
@JsonSchema(choices = {"jdbc:postgresql://localhost:5432/postgres",
"jdbc:h2:localhost:9092/path/your_database", "jdbc:sqlite:path/your_database.db"
/*
* "jdbc:jtds:sqlserver://your_host:1433/your_database;SCHEMA=your_schema",
* "jdbc:oracle:thin:@your_host:1521/ORCL", "jdbc:mariadb://your_host:3306/your_database",
Expand Down

0 comments on commit 8e9d5f5

Please sign in to comment.