JSTL - Tag SQL <sql: param>
Il <sql:param> tag utilizzato come azione nidificata per <sql:query> tag e il <sql:update>tag per fornire un valore per un segnaposto di valore. Se viene fornito un valore null, il valore viene impostato suSQL NULL per il segnaposto.
Attributo
Il <sql:param> tag ha i seguenti attributi:
Attributo | Descrizione | necessario | Predefinito |
---|---|---|---|
Valore | Valore del parametro da impostare | No | Corpo |
Esempio
Per iniziare con il concetto di base, creiamo un file Employees tabella nel database TEST e creare pochi record in quella tabella come segue:
Passo 1
Apri un file Command Prompt e passare alla directory di installazione come segue:
C:\>
C:\>cd Program Files\MySQL\bin
C:\Program Files\MySQL\bin>
Passo 2
Accedi al database come segue:
C:\Program Files\MySQL\bin>mysql -u root -p
Enter password: ********
mysql>
Passaggio 3
Crea il file Employee tabella in TEST database come segue -
mysql> use TEST;
mysql> create table Employees
(
id int not null,
age int not null,
first varchar (255),
last varchar (255)
);
Query OK, 0 rows affected (0.08 sec)
mysql>
Crea record di dati
Creeremo ora alcuni record nel file Employee tabella come segue -
mysql> INSERT INTO Employees VALUES (100, 18, 'Zara', 'Ali');
Query OK, 1 row affected (0.05 sec)
mysql> INSERT INTO Employees VALUES (101, 25, 'Mahnaz', 'Fatma');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO Employees VALUES (102, 30, 'Zaid', 'Khan');
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO Employees VALUES (103, 28, 'Sumit', 'Mittal');
Query OK, 1 row affected (0.00 sec)
mysql>
Scriviamo ora un JSP che utilizzerà l'estensione <sql:update> tag per eseguire un SQL DELETE istruzione con cui eliminare un record id = 103 dalla tabella come segue -
<%@ 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>JSTL sql:param Tag</title>
</head>
<body>
<sql:setDataSource var = "snapshot" driver = "com.mysql.jdbc.Driver"
url = "jdbc:mysql://localhost/TEST"
user = "root" password = "pass123"/>
<c:set var = "empId" value = "103"/>
<sql:update dataSource = "${snapshot}" var = "count">
DELETE FROM Employees WHERE Id = ?
<sql:param value = "${empId}" />
</sql:update>
<sql:query dataSource = "${snapshot}" var = "result">
SELECT * from Employees;
</sql:query>
<table border = "1" width = "100%">
<tr>
<th>Emp ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
</tr>
<c:forEach var = "row" items = "${result.rows}">
<tr>
<td> <c:out value = "${row.id}"/></td>
<td> <c:out value = "${row.first}"/></td>
<td> <c:out value = "${row.last}"/></td>
<td> <c:out value = "${row.age}"/></td>
</tr>
</c:forEach>
</table>
</body>
</html>
Accedi al JSP sopra, verrà visualizzato il seguente risultato:
+-------------+----------------+-----------------+-----------------+
| Emp ID | First Name | Last Name | Age |
+-------------+----------------+-----------------+-----------------+
| 100 | Zara | Ali | 18 |
| 101 | Mahnaz | Fatma | 25 |
| 102 | Zaid | Khan | 30 |
+-------------+----------------+-----------------+-----------------+
Puoi provare il file <sql:param> tag con il SQL UPDATE e il SELECT anche le istruzioni nello stesso modo in cui le abbiamo usate con DELETE dichiarazione.