I get back an error indicating java.sql.SQLException: No suitable driver found for jdbc:postgresql://localhost: 5432/testDBMS
import java.sql.*; impo
Did you not load the driver in your code? Either define the jdbc.drivers property setting it to org.postgresql.Driver or add Class.forName("org.postgresql.Driver") to your code.
jdbc.drivers
org.postgresql.Driver
Class.forName("org.postgresql.Driver")