JSP 連接數(shù)據(jù)庫

jsp 連接數(shù)據(jù)庫

本教程假定您已經(jīng)了解了 jdbc 應(yīng)用程序的工作方式。在您開始學(xué)習 jsp 數(shù)據(jù)庫訪問之前,請訪問 java mysql 連接 來設(shè)置相關(guān)驅(qū)動及配置。

注意:

你可以下載本站提供的 jar 包:

下載后把 mysql-connector-java-<對應(yīng)版本>-bin.jar 拷貝到 tomcat 下 lib 目錄。

mysql 8.0 以上版本的數(shù)據(jù)庫連接有所不同:

  • 1、com.mysql.jdbc.driver 更換為 com.mysql.cj.jdbc.driver。

  • mysql 8.0 以上版本不需要建立 ssl 連接的,需要顯示關(guān)閉。

  • 最后還需要設(shè)置 cst。

加載驅(qū)動與連接數(shù)據(jù)庫方式如下:

<sql:setdatasource var="snapshot" driver="com.mysql.cj.jdbc.driver"
     url="jdbc:mysql://localhost:3306/yapf?usessl=false&servertimezone=utc&useunicode=true&characterencoding=utf-8
     user="root"  password="12345"/>

從基本概念下手,讓我們來創(chuàng)建一個簡單的表,并在表中創(chuàng)建幾條記錄。

創(chuàng)建測試數(shù)據(jù)

接下來我們在 mysql 中創(chuàng)建 yapf 數(shù)據(jù)庫,并創(chuàng)建 websites 數(shù)據(jù)表,表結(jié)構(gòu)如下:

create table `websites` (
  `id` int(11) not null auto_increment,
  `name` char(20) not null default '' comment '站點名稱',
  `url` varchar(255) not null default '',
  `alexa` int(11) not null default '0' comment 'alexa 排名',
  `country` char(10) not null default '' comment '國家',
  primary key (`id`)
) engine=innodb auto_increment=10 default charset=utf8;

插入一些數(shù)據(jù):

insert into `websites` values ('1', 'google', 'https://www.google.cm/', '1', 'usa'), ('2', '淘寶', 'https://www.taobao.com/', '13', 'cn'), ('3', '碩編程', 'http://www.slktour.com', '5892', ''), ('4', '微博', 'http://weibo.com/', '20', 'cn'), ('5', 'facebook', 'https://www.facebook.com/', '3', 'usa');

數(shù)據(jù)表顯示如下:

select操作

接下來的這個例子告訴我們?nèi)绾问褂胘stl sql標簽來運行sql select語句:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<%@ page import="java.io.*,java.util.*,java.sql.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
 
<html>
<head>
<title>select 操作</title>
</head>
<body>
<!--
jdbc 驅(qū)動名及數(shù)據(jù)庫 url 
數(shù)據(jù)庫的用戶名與密碼,需要根據(jù)自己的設(shè)置
useunicode=true&characterencoding=utf-8 防止中文亂碼
 -->
<sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver"
     url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8"
     user="root"  password="123456"/>
 
<sql:query datasource="${snapshot}" var="result">
select * from websites;
</sql:query>
<h1>jsp 數(shù)據(jù)庫實例 - 碩編程</h1>
<table border="1" width="100%">
<tr>
   <th>id</th>
   <th>站點名</th>
   <th>站點地址</th>
</tr>
<c:foreach var="row" items="${result.rows}">
<tr>
   <td><c:out value="${row.id}"/></td>
   <td><c:out value="${row.name}"/></td>
   <td><c:out value="${row.url}"/></td>
</tr>
</c:foreach>
</table>
 
</body>
</html>

訪問這個jsp例子,運行結(jié)果如下:

insert操作

這個例子告訴我們?nèi)绾问褂胘stl sql標簽來運行sql insert語句:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<%@ page import="java.io.*,java.util.*,java.sql.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
 
<html>
<head>
<title>select 操作</title>
</head>
<body>
<!--
jdbc 驅(qū)動名及數(shù)據(jù)庫 url 
數(shù)據(jù)庫的用戶名與密碼,需要根據(jù)自己的設(shè)置
useunicode=true&characterencoding=utf-8 防止中文亂碼
 -->
<sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver"
     url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8"
     user="root"  password="123456"/>
<!--
插入數(shù)據(jù)
 -->
<sql:update datasource="${snapshot}" var="result">
insert into websites (name,url,alexa,country) values ('碩編程移動站', 'http://m.yapf.com', 5093, 'cn');
</sql:update>
<sql:query datasource="${snapshot}" var="result">
select * from websites;
</sql:query>
<h1>jsp 數(shù)據(jù)庫實例 - 碩編程</h1>
<table border="1" width="100%">
<tr>
   <th>id</th>
   <th>站點名</th>
   <th>站點地址</th>
</tr>
<c:foreach var="row" items="${result.rows}">
<tr>
   <td><c:out value="${row.id}"/></td>
   <td><c:out value="${row.name}"/></td>
   <td><c:out value="${row.url}"/></td>
</tr>
</c:foreach>
</table>
 
</body>
</html>

訪問這個jsp例子,運行結(jié)果如下:

delete操作

這個例子告訴我們?nèi)绾问褂胘stl sql標簽來運行sql delete語句:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<%@ page import="java.io.*,java.util.*,java.sql.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
 
<html>
<head>
<title>select 操作</title>
</head>
<body>
<!--
jdbc 驅(qū)動名及數(shù)據(jù)庫 url 
數(shù)據(jù)庫的用戶名與密碼,需要根據(jù)自己的設(shè)置
useunicode=true&characterencoding=utf-8 防止中文亂碼
 -->
<sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver"
     url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8"
     user="root"  password="123456"/>

<!--
刪除 id 為 11 的數(shù)據(jù)
 -->
<sql:update datasource="${snapshot}" var="count">
  delete from websites where id = ?
  <sql:param value="${11}" />
</sql:update>

<sql:query datasource="${snapshot}" var="result">
select * from websites;
</sql:query>
<h1>jsp 數(shù)據(jù)庫實例 - 碩編程</h1>
<table border="1" width="100%">
<tr>
   <th>id</th>
   <th>站點名</th>
   <th>站點地址</th>
</tr>
<c:foreach var="row" items="${result.rows}">
<tr>
   <td><c:out value="${row.id}"/></td>
   <td><c:out value="${row.name}"/></td>
   <td><c:out value="${row.url}"/></td>
</tr>
</c:foreach>
</table>
 
</body>
</html>

訪問這個jsp例子,運行結(jié)果如下:

update操作

這個例子告訴我們?nèi)绾问褂胘stl sql標簽來運行sql update語句:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<%@ page import="java.io.*,java.util.*,java.sql.*"%>
<%@ page import="javax.servlet.http.*,javax.servlet.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
 
<html>
<head>
<title>select 操作</title>
</head>
<body>
<!--
jdbc 驅(qū)動名及數(shù)據(jù)庫 url 
數(shù)據(jù)庫的用戶名與密碼,需要根據(jù)自己的設(shè)置
useunicode=true&characterencoding=utf-8 防止中文亂碼
 -->
<sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver"
     url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8"
     user="root"  password="123456"/>

<!--
修改 id 為 3 的名字:碩編程改為 yapf
 -->
<c:set var="siteid" value="3"/>
 
<sql:update datasource="${snapshot}" var="count">
  update websites set name = 'yapf' where id = ?
  <sql:param value="${siteid}" />
</sql:update>

<sql:query datasource="${snapshot}" var="result">
select * from websites;
</sql:query>
<h1>jsp 數(shù)據(jù)庫實例 - 碩編程</h1>
<table border="1" width="100%">
<tr>
   <th>id</th>
   <th>站點名</th>
   <th>站點地址</th>
</tr>
<c:foreach var="row" items="${result.rows}">
<tr>
   <td><c:out value="${row.id}"/></td>
   <td><c:out value="${row.name}"/></td>
   <td><c:out value="${row.url}"/></td>
</tr>
</c:foreach>
</table>
 
</body>
</html>

訪問這個jsp例子,運行結(jié)果如下:

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频