JSP鏈接mysql數據庫的重點

1:用mysql驅動把mysql與tomcat的鏈接起來。把mysql驅動包(不用解壓)放到Tomcat安裝目錄中lib文件夾下便可。html

 2:而後在本身的新建的web應用程序上面就能夠下下面的代碼java

3:JDBC鏈接mysql數據庫三步走mysql

第一首先加載數據庫驅動,註冊到驅動管理器Class.forName("com.mysql.jdbc.Driver");web

第二構建數據庫鏈接URL,String URL="jdbc:mysql://localhost:3306/test";//test爲本身建立的數據庫,url格式:"jdbc協議:ip地址或者域名+端口+數據庫名稱"sql

第三獲取Connection對象 Connection conn=DriverManager.getConnection("root","123456",URL);//root爲本身mysql的用戶名,123456爲本身mysql的密碼數據庫

解釋說明:tomcat

String url="jdbc:mysql://localhost:3306/test";//test爲本身建立的數據庫
String username="root";//本身的mysql用戶
String password="123456";//本身的mysql的密碼
ui

 1 <%@ page language="java" contentType="text/html; charset=UTF-8"
 2     pageEncoding="UTF-8"%>
 3 <%@page import="java.sql.DriverManager"%>
 4 <%@page import="java.sql.Connection"%>
 5 <html>
 6 <head>
 7 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 8 <title>Insert title here</title>
 9 </head>
10 <body>
11 
12 <% 
13     try{
14         Class.forName("com.mysql.jdbc.Driver");//記載數據庫驅動,註冊到驅動管理器
15         String url="jdbc:mysql://localhost:3306/test";
16         String username="root";
17         String password="123456";
18         Connection conn=DriverManager.getConnection(url,username,password);
19         if(conn!=null){
20             out.println("數據庫鏈接成功!!!");
21         }else{
22             out.println("數據庫鏈接失敗!!!");
23         }
24     }catch(ClassNotFoundException e){
25         e.printStackTrace();
26     }
27 
28 
29 %>
30 </body>
31 </html>

相關文章
相關標籤/搜索