반응형 sqlite1 Sqlite DB + java 연동 Sqlite JDBC 다운 http://www.zentus.com/sqlitejdbc/ Example Source import java.sql.*; public class Test { public static void main(String[] args) throws Exception { Class.forName("org.sqlite.JDBC"); Connection conn = DriverManager.getConnection("jdbc:sqlite:test.db"); Statement stat = conn.createStatement(); stat.executeUpdate("drop table if exists people;"); stat.executeUpdate("create table people .. 2010. 8. 24. 이전 1 다음 반응형