A-A+
JAVA中连接SQL Server 2005的代码
public class DB {
Connection ct;
PreparedStatement pstmt;
// 在构造函数中建立与数据库的连接,这样在建立DB对象的时候就连接了数据库
public DB(){
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
ct=DriverManager.getConnection
("jdbc:sqlserver://localhost:1433;databaseName=blog(数据库名)","sa","123456");
} catch (Exception e) {
e.printStackTrace();
}
}