欢迎投稿

今日深度:

sqlite数据库连接,

sqlite数据库连接,


官网 http://www.sqlite.org/

java code for  get db connection

Connection con = null;

        String fileName = "c:/tt/pmp.db";
        try {
            Class.forName("org.sqlite.JDBC");
            con = DriverManager.getConnection("jdbc:sqlite:" + fileName);
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }

www.htsjk.Com true http://www.htsjk.com/SQLite/20666.html NewsArticle sqlite数据库连接, 官网 http://www.sqlite.org/ java code for  get db connection Connection con = null;         String fileName = "c:/tt/pmp.db";         try {             Class.forName("org.sqlite.JDBC");     ...
相关文章
    暂无相关文章
评论暂时关闭