'참고 사이트'에 해당되는 글 6건

  1. 2014.11.18 [PostgreSQL] JDBC 연동
  2. 2014.11.18 [PostgreSQL] install
  3. 2011.04.07 Flex Book Effect
  4. 2009.12.08 시멘틱 웹
  5. 2009.07.15 Flex 스킨 관련 URL
  6. 2009.04.10 미래의 UI는 이렇게 될 것인가?
참고 사이트2014. 11. 18. 15:41


postgresql-9.3-1102.jdbc41.jar

mpoimport java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.Statement;

import java.util.Properties;



public class ConnetctionPostgreSQL {


public static void main(String[] args) {

//THIS IS PostgreSQL JDBC Simple Sample by won chan sic (2014.11.18) 

System.out.println("HI");

String url = "jdbc:postgresql://localhost/wonword";

Properties props = new Properties();

props.setProperty("user", "postgres");

props.setProperty("password", "1q2w3e");

//props.setProperty("ssl", "true");

try{

Connection conn = DriverManager.getConnection(url,props);

//*********************************************************************************

// SELECT

//*********************************************************************************

Statement st = conn.createStatement();

ResultSet rs = st.executeQuery("SELECT USER_ID, USER_PW FROM USERS");

while(rs.next())

{

System.out.println( rs.getString(1) + "/"+ rs.getString(2));

}

rs.close();

st.close();

//*********************************************************************************


//*********************************************************************************

// INSERT

//*********************************************************************************

// Statement stmt = null;

// stmt = conn.createStatement();

//

// String sql = "INSERT INTO USERS(USER_ID, USER_PW) VALUES ('한글','테스트')";

// stmt.executeUpdate(sql);

//

// stmt.close();

//*********************************************************************************

}catch( Exception e ){

System.out.println(e.toString());

}


}


}

rt 



Posted by 원찬식
참고 사이트2014. 11. 18. 14:56

1. Download PostgreSQL
    URL : http://www.enterprisedb.com/products-services-training/pgdownload

2. Double Click download file

3. Next and Next
    (주의! mac의 경우 관리자 비밀번호와 동일하면 나중에 pgAdmin에서 접속이 되지 않는 상황 발생!)


Posted by 원찬식
참고 사이트2011. 4. 7. 15:35
http://www.quietlyscheming.com/blog/components/flexbook/
Posted by 원찬식
참고 사이트2009. 12. 8. 00:09
프로테이지 다운 로드 받는 곳
http://protege.stanford.edu
Posted by 원찬식
참고 사이트2009. 7. 15. 17:04
Posted by 원찬식
참고 사이트2009. 4. 10. 14:01

그저 상상만 해 왔던 것들이 현실로 이루어 지는 현실이다

그런 의미에서 아래이 사이트를 소개 해 본다.

예전 사장님께서 한번 보여 주셨던것이 기억 나서 찾아 봤는데 이번에 버전이 더 업그레이드 된듯...

동영상을 보면 많은것을 느끼게 된다.

책상을 마치 내 모니터에 옮겨 놓은듯한 느낌이 드는 화려한 UI이다.

나도 이제 이런것을 한번 만들어 봐야 겠다..

참고 동영상 : http://dougmccune.com/blog/2007/07/23/tileui-desktop-demo-video/

아래의 사이트는 실습을 한번 해 보는곳!! ^^
http://tileui.com/
Posted by 원찬식