Posts by Ricardo Gonçalves • 11 points
1 post
-
1
votes1
answer69
viewsA: Error when bringing information from database
In your DB class I think the url attribute is wrong. You declared: private String url = "jbdc:postgresql://%s:%d/%s"; But it would have to be: private String url = "jdbc:postgresql://%s:%d/%s";…