The Function ‘CONCATENATION’ will add Two String with each other.
In the first instance i make a table named ‘org’ with required Fields and values into the database named ‘dbase’ within the reference of mySql(php myAdmin). Then i import all the required java packages from java library. Then i make a class named ‘MySqlConcatenationJavaServlet’ which extends the ‘HttpServlet’. I use serviceMethod()
which will bring the request from doGet()Method for output on the web browser. After that i loaded all the required drivers for database accessing. Here i declare some mandatory variables like i declare Connection (this variable will create a link between database and the java code).then i use ‘resultset’ that will bring the value from the required columns and rows. i declare ‘preparedStatement’ that will responsible for the executing selected query like executeQuery() as (SELECT last_name||job_id as UC FROM org). Then i use doGet()Method for getting output on the web Browser.
To Getting Output on web browser in a tabular form i use ‘HTML’ code and tags.
EXAMPLE
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class MySqlConcatenationJavaServlet extends HttpServlet
{
public void service(HttpServletRequest rq, HttpServletResponse rp)throws IOException, ServletException
{
rp.setContentType("text/html");
PrintWriter disp = rp.getWriter();
String driver = "com.mysql.jdbc.Driver";
String url = "jdbc:mysql://localhost/dbase";
String uid = "root";
String psw = "root";
Connection con=null;
PreparedStatement ps = null;
ResultSet rs;
try
{
Class.forName(driver);
con = DriverManager.getConnection(url,uid,psw);
ps=con.prepareStatement("SELECT last_name||job_id as UC FROM org;");
rs = ps.executeQuery();
String title = "Employee's Info With Using Of Concatenation";
String docType ="<!doctype html public \"-//w3c//dtd html 4.0 " + "transitional//en\">\n";
disp.println(docType + "<html>\n" + "<head><title>" + title + "</title></head>\n" +
"<body bgcolor=\"#f4efef\">\n" + "<h1 align=\"center\">" + title + "</h1>\n" + "<ul>\n" +
"<table width=\"50%\" border=\"1\" align=\"center\">\n" + "<th>Name</th><th>Job ID</th>\n"+ "</body> </html>");
while(rs.next())
{
String l_name = rs.getString("UC");
String j_id = rs.getString("UC");
disp.println("<tr><td align=\"center\">" + l_name + "<td align=\"center\">" + j_id +"</td></tr>" );
}
}
catch(Exception e)
{
e.printStackTrace();
}
disp.close();
}
public void doPost(HttpServletRequest rq,HttpServletResponse rp)throws IOException,ServletException
{
doGet(rq,rp);
}
}
WEB.XML
<servlet>
<servlet-name>MySqlConcatenationJavaServlet</servlet-name>
<servlet-class>MySqlConcatenationJavaServlet</servlet-class>
</servlet>
<!-- servlet mapping -->
<servlet-mapping>
<servlet-name>MySqlConcatenationJavaServlet</servlet-name>
<url-pattern>/MySqlConcatenationJavaServlet</url-pattern>
</servlet-mapping>