码迷,mamicode.com
首页 > 数据库 > 详细

JDBC

时间:2016-06-17 11:00:39      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

public static Connection getConnection() throws Exception {
        // 1. ???????????? 4 ?????.
        // 1). ???? Properties ????
        Properties properties = new Properties();

        // 2). ??? jdbc.properties ???????????
        InputStream in = JDBCTools.class.getClassLoader().getResourceAsStream(
                "jdbc.properties");

        // 3). ???? 2?? ???????????
        properties.load(in);

        // 4). ??????? user, password ??4 ?????.
        String user = properties.getProperty("user");
        String password = properties.getProperty("password");
        String jdbcUrl = properties.getProperty("jdbcUrl");
        String driver = properties.getProperty("driver");

        // 2. ?????????????(????? Driver ??????????????????????.)
        Class.forName(driver);

        // 3. ??? DriverManager ?? getConnection() ???????????????.
        return DriverManager.getConnection(jdbcUrl, user, password);
    }

JDBC

标签:

原文地址:http://www.cnblogs.com/taz372436/p/5593213.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!