I\'m trying to connect netbeans to my postgresql database. The connection seems to have worked as I don\'t get any errors or exceptions when just connecting, methods such as
You could check these possibilities:
String query = "SELECT * FROM clients"; String query = "SELECT * FROM CLIENTS"; String query = "SELECT * FROM \"clients\""; String query = "SELECT * FROM \"CLIENTS\""; String query = "SELECT * FROM Clients";
Maybe one of those would work.