// Specify URL for the PostgreSQL database:
// jdbc:postgresql://<hostname>:<port>/<databasename>
String url = "jdbc:postgresql://localhost:5432/test"
// Specify URL for the MySQL database:
// jdbc:mysql://<hostname>:<port>/<databasename>
String url = "jdbc:mysql://localhost:3306/dinosaurs"