程式設計工藝大師 http://tccnchsu.blogspot.tw/

下載JAVA jdk   

 


 

下載解壓縮

使用eclipse建立專案來測試

 

package test;

import java.sql.Connection;
import java.sql.DriverManager;


public class test1 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
         Connection c = null;
          try {
           Class.forName("org.sqlite.JDBC");
           c = DriverManager.getConnection("jdbc:sqlite:test.db");
          } catch (Exception e) {
           System.err.println(e.getClass().getName() + ": " + e.getMessage());
           System.exit(0);
          }
          System.out.println("Opened database successfully");
         }

}

 

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 d0250459 的頭像
    d0250459

    d0250459的部落格

    d0250459 發表在 痞客邦 留言(0) 人氣()