다운로드 받기: https://bitbucket.org/xerial/sqlite-jdbc/downloads
라이브러리 다운로드후 추가 후에 아래와 같이 사용 하면 된다
private Connection getConnection()
{
Connection result = null;
try
{
Class.forName("org.sqlite.JDBC");
result = DriverManager.getConnection("jdbc:sqlite:D:/test.db");
}
catch (SQLException se) {
System.out.println("Error :: SQLException ");
se.printStackTrace();
}
catch (ClassNotFoundException cnfe) {
System.out.println("Error :: Did not found driver");
cnfe.printStackTrace();
}
catch (Exception e) {
e.printStackTrace();
}
return result;
}
'Work > java' 카테고리의 다른 글
나도 한번 만들어본 자바 로또 번호 생성기.... (0) | 2014.10.28 |
---|---|
java HashMap 에서 값 순서대로 꺼내기 (0) | 2014.02.24 |
DEBUG POP3: server doesn't support TOP, disabling it (0) | 2013.10.14 |
ArrayList 중복 제거 및 순차 정렬 함수 (0) | 2013.08.20 |
java IP to Long 변환 유틸 (0) | 2013.06.20 |