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

java 数据库连接

时间:2017-08-10 19:27:43      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ati   jdbc   .sql   ber   基本   jdb   sqlserver   exce   property   

JDBC基本用法

jdbc.driverClass=com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbc.url=jdbc:sqlserver://127.0.0.1:1433;DatabaseName=test
jdbc.username=root
jdbc.password=root
public static Connection getConnection() throws IOException, ClassNotFoundException, SQLException {
    Properties props = new Properties();
    props.load(new FileInputStream("jdbc.properties"));
    Class.forName(props.getProperty("jdbc.driverClass"));
    String url = props.getProperty("jdbc.url");
    String username = props.getProperty("jdbc.username");
    String password = props.getProperty("jdbc.password");
    return DriverManager.getConnection(url, username, password);
}

DBCP

Spring

JPA

Hibernate

java 数据库连接

标签:ati   jdbc   .sql   ber   基本   jdb   sqlserver   exce   property   

原文地址:http://www.cnblogs.com/anxiao/p/7340574.html

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