1.第一步,在java項目下建立libs包,第二
加入這個java包sqljdbc4.jar
第二步,在Sql配置管理器中設定:
Sql Mssqlserver 的協定,中TCP/IP設定啟用
SQL Native Client10.0配置中用戶端協定:
TCP/IP設定啟動
public static void main(String[] args) throws ClassNotFoundException, SQLException { // 主方法
String url = "jdbc:sqlserver://127.0.0.1:1433;databaseName=mydb;user=sa;password=4565892boy8";//sa身份連接配接 其中端口号就是TCP/IP預設的
String url2 = "jdbc:sqlserver://127.0.0.1:1433;databaseName=mydb;integratedSecurity=true;";//windows內建模式連接配接
// Declare the JDBC objects.
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
try {
// Establish the connection.
System.out.println("begin.");
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
con = DriverManager.getConnection(url);
System.out.println("end."); // 調用連接配接資料庫方法
}catch(SQLException e)
{
e.printStackTrace();
}
finally{
con.close();
}
}