Хочу просто прконектиться к postgresql но выдает ошибку
java.sql.SQLException: No suitable driver found for
jdbs:postgresql://localhost:5432/postgres
вот код
package com.company;
import java.sql.*;
public class Main{
public static void main(String[] args){
try{
Connection conn=DriverManager.getConnection("jdbs:postgresql://localhost:5432/postgres","posgres","42661902");
Statement st=conn.createStatement();
ResultSet rs=st.executeQuery("select * from countries");
while(rs.next()){
System.out.println(rs.getString("contry_id")+", "+rs.getString("country_name"));
}
}
catch (Exception e){
System.out.print(e);
}
}
}
java version "1.8.0_271"
а вот скрин что jar файл вместе с Main