本文实例讲述了java实现的连接数据库及模糊查询功能。分享给大家供大家参考,具体如下:
模糊查询是比较常见的一种查询方式,例如在订单表中,包含有订单的具体日期。如果要查询某年某月的订单信息,最好的方式就是使用模糊查询。进行模糊查询需要使用关键字LIKE。在使用LIKE关键字进行模糊查询时,可以使用通配符"%",来代替0个或者多个字符,使用下划线_来代表一个字符。
注释:需要注意的是在使用LIKE的时候,后面的查询条件需要加 ' ',英文状态下的单引号引起来,不然报错如下
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%别%' at line 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package com.ningmeng; import java.sql.*; public class Test07 { public static void main(String[] args) { // TODO Auto-generated method stub try { Class.forName( "com.mysql.jdbc.Driver" ); //加载数据库驱动 System.out.println( "加载数据库驱动成功" ); String url= "jdbc:mysql://localhost:3306/test" ;//声明自己的数据库test的url String user= "root" ; //自己的数据库用户名 String pass= "123456" ; //自己的数据库密码 //建立数据库连接,获得连接的对象conn Connection conn=DriverManager.getConnection(url,user,pass); System.out.println( "连接数据库驱动成功" ); Statement stmt=conn.createStatement(); //创建一个Statement对象 String sql= "select * from users where username like '%别%' " ; //生成sql语句 ResultSet rs=stmt.executeQuery(sql); //执行sql语句 int id,age,sex; String username,password; System.out.println( "id\t 用户名\t 密码\t 性别\t 年龄" ); while (rs.next()){ id=rs.getInt( "id" ); username=rs.getString( 2 ); password=rs.getString( "password" ); age=rs.getInt( 4 ); sex=rs.getInt( "age" ); System.out.println(id+ "\t" +username+ "\t" +password+ "\t" +sex+ "\t" +age); //输出查询结果 } System.out.println( "模糊查询成功" ); conn.close(); //关闭数据库连接 System.out.println( "关闭数据库连接成功" ); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } |
运行结果:
希望本文所述对大家java程序设计有所帮助。
原文链接:https://www.cnblogs.com/biehongli/p/5989161.html