하루에 한가지

postgres 설치부터 ping 본문

db/postgreSQL

postgres 설치부터 ping

너도 2019. 10. 25. 14:50

 

DB 생성 db의 인코딩에 주위해야 한다.

db connection 부터 인코딩을 탄다.

 

public class Ping {

	public static void main(String[] args) throws ClassNotFoundException, SQLException {
	
		
		//		String url = "jdbc:postgresql:postgres";
		   String url = "jdbc:postgresql://localhost:5432/Test";  
		   String usr = "postgres";  
		   String pwd = "1111";

		   Class.forName("org.postgresql.Driver");

		   Connection db = DriverManager.getConnection(url, usr, pwd);
		   System.out.println(db);
	}
}

lib/postgresql-42.2.5.jar

 

 

'db > postgreSQL' 카테고리의 다른 글

postgreSQL 에서 테이블 형상 scan  (0) 2019.11.18
Comments