用配置文件连接数据库
1. Eclipse中,在src目录下建立db.properties文件,在里面配置数据库连接所需的      Driver,url,user,possword ,注意等号左右不能空格
如:
driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
url=jdbc:sqlserver://localhost:1433;databaseName=restrant
user=sa
基本编程代码大全
properties是什么文件password=110sql数据库置疑怎么处理
2.写一个数据库连接类
import java.io.IOException;
import java.sql.*;
import java.util.Properties;
public Connection getCon() {
Connection con = null;
Properties properties = new Properties();
try {
xshell连接失败properties.Class().getResourceAsStream(
vb连接数据库的方法
"/db.properties"));
String driver = Property("driver");
String url = Property("url");
String user = Property("user");
String password = Property("password");
try {
Class.forName(driver);
con = Connection(url, user, password);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {雪崩为什么会危险
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return con;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。