JSP之鏈接SQL Server

一、在SQL Server中啓用sa(請參考本人博客:http://www.cnblogs.com/zhouhb/archive/2011/02/15/1955324.html)
二、在SQL Server配置管理器中啓用TCP/IPhtml

三、雙擊TCP/IP,在彈出的窗口中選擇「IP地址選項卡」,將IP1【IP地址】設爲127.0.0.1java

四、在上一步的窗口中將滾動條拖到最下方,將IPAll中的【TCP端口】設置成【1433】web

五、重啓SQL Server服務
六、下載數據庫廠商提供的驅動程序包sqljdbc4.jar,拷貝到web項目的WEB-INF\lib目錄下
七、編程,經過純Java驅動方式與數據庫創建鏈接sql

<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ page import="java.sql.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>
<%
String URL = "jdbc:sqlserver://127.0.0.1:1433;databaseName=addresslist";
Connection con = null;
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
con = DriverManager.getConnection(URL, "sa", "123");
out.print("鏈接成功<br/>");
} catch (Exception e) {
    e.printStackTrace();
  } finally {
  try {
      con.close();
    } catch (Exception e2) {
  }
}
%>
</body>
</html>數據庫

頁面上顯示「鏈接成功」,則表示配置正確。編程

相關文章
相關標籤/搜索