Data base Connection Error
Please say me why this error came
Error occurred org.postgresql.util.PSQLException: The column index is out of range: 0, number of columns: 0.
code below
stmt = conn.prepareStatement("SELECT * FROM AddressList");
stmt.setString(1,"Jam");
result = stmt.executeQuery();
stmt.close();
conn.close();

