In this tutorial you will learn how to use '=' operator of mysql in servlet.
MySql EQUAL TO ( = ) Operator Example
In this tutorial you will learn how to use '=' operator of mysql in servlet.
= (equal to) operator of mysql compares the two operands and returns the value null if both or either side of operand is declared to null, returns 1 if both operands are equal, and returns 0 if both of the operands are declared to different non null value.
Example :
In this example first I created a table named userInfo for fetching the data. To use this mysql operator in servlet I created a class named MysqlEqual.java which extends the class HttpServlet to support the http functionality to servlet, into which I defined the doGet() method into which the object's of HttpServeltRequest and HttpServletResponse are created. Since we have to use the mysql query so we are required to connect with a database package (here I am using MySql) that's why in further steps I perform the database connectivity with servlet using the java.sql package. In example to use the above operator I use the query "SELECT empId = deptId FROM userInfo". This query will return the value 1 if the both side of field value is getting equal, will return null if both or either side of operand is getting null, and 0 if both sides field getting different non null values.
MysqlEqual.java
import java.io.IOException; import java.io.PrintWriter; import java.sql.SQLException; import java.sql.DriverManager; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class MysqlEqual extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { response.setContentType("text/html"); PrintWriter out= response.getWriter(); String className= "com.mysql.jdbc.Driver"; String url= "jdbc:mysql://192.168.10.13/data"; String user="root"; String password="root"; Connection con; PreparedStatement ps; ResultSet rs; try { Class.forName(className); con= DriverManager.getConnection(url, user, password); String sql= "SELECT empId = deptId FROM userInfo"; ps= con.prepareStatement(sql); rs= ps.executeQuery(); out.println("<html><table border=1>"); out.println("<tr><td align=left><b>empId = deptId</b></td></tr>"); while(rs.next()) { String equal= rs.getString("empId = deptId"); out.println("<tr><td align=middle>"+equal+"</td>"); out.println("</tr>"); } out.println("</table></html>"); rs.close(); ps.close(); con.close(); } catch(ClassNotFoundException cx) { out.println(cx); } catch(SQLException sx) { out.println(sx); } } }
web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name>mysqlComparisonFunctionAndOperator</display-name> <servlet> <servlet-name>MysqlEqual</servlet-name> <servlet-class>MysqlEqual</servlet-class> </servlet> <servlet-mapping> <servlet-name>MysqlEqual</servlet-name> <url-pattern>/MysqlEqual</url-pattern> </servlet-mapping> </web-app>
Output :
Data in the database table is as following :
When you will execute the servlet example you will get the output like as :
[ 0 ] Comments