jsp+access Fuzzy Query

Source: Internet
Author: User
Tags odbc stmt

<%@ page contenttype= "Text/html;charset=utf-8"%>
<%@ page import= "java.sql.*"%>
<%
Connection Conn;
Statement stmt;
ResultSet rs;
String k=request.getparameter ("sel");
String SQL;
String Return_zjname=null;
String Return_id=null;
Class.forName ("Sun.jdbc.odbc.JdbcOdbcDriver");
Conn=drivermanager.getconnection ("Jdbc:odbc:comu");/is the data source name
Stmt=conn.createstatement ();
Sql= "SELECT COUNT (*) as cut from Zjbiao where zjname like ' * ' +k+" * ";
Out.print (SQL);
Rs=stmt.executequery (SQL);
if (Rs.next ())
{
int Rec=rs.getint ("cut");//rec is all the results
Out.print ("&rec=" +rec+ "&");
}
Conn.close ();
%>
The parameters I pass are Sel=air
In Access select COUNT (*) as cut from Zjbiao where zjname like ' *air* ' can get results
But compiles in the JSP does not have the error is:
Org.apache.jasper.JasperException:An exception occurred processing JSP page/comu/selectzj.jsp at line 16

13:stmt=conn.createstatement ();
14:sql= "SELECT COUNT (*) as cut from Zjbiao where zjname like ' * ' +k+" * ";
15:out.print (SQL);
16:rs=stmt.executequery (SQL);
17:if (Rs.next ())
18: {

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.