为什么在向查询添加Where子句时没有得到结果?

时间:2013-11-06 12:15:31

标签: java mysql sql jdbc

我正在使用Mysql JDBC驱动程序..但我有一些问题..

问题是当我在java源代码中使用SELECT Query时。

当我使用此查询时:

select * from [name of table]

我已经成功地从DB获得了查询结果。

但是当我使用这个查询时:

 select * from student where (substring(stu_name,0,1)>= '가' and substring(stu_name,0,1) < '나') ;

我没有从DB获得查询结果..

区别在于使用where或不使用。{/ p>

有什么问题?

如何解决此问题?

这是我的代码

此查询无效

select * from student where (substring(stu_name,0,1)>= '가' and substring(stu_name,0,1) < '나') ;

此查询运行良好

select * from student;

差异只是查询信息..其余的源代码绝对是


我添加了我的java源代码 公共类中心{

/**
 * @param args
 */
public static void main(String[] args) {
    // TODO Auto-generated method stub
    String sql =  "select * from student where (substring(stu_name,0,1)>= '가' and substring(stu_name,0,1) < '나') ";
    String url = "jdbc:mysql://localhost:3306/test";
    String driverName = "com.mysql.jdbc.Driver";
    String id = "root";
    String password = "jsyun0415";
    Connection con = null;
    PreparedStatement prepareState = null;
    Statement stmt = null;
    ResultSet rs = null;
    ArrayList<String> list = new ArrayList<String>();
    ArrayList<String> list_second = new ArrayList<String>();

    try {
        Class.forName(driverName);
    } catch (ClassNotFoundException e) {
        System.out.println("Failed to load JDBC driver..");
        e.printStackTrace();
        return;
    }

    try {
        con = DriverManager.getConnection(url, id, password);
        stmt = con.createStatement();
        rs = stmt.executeQuery(sql);


            while (rs.next()) {
                list.add(rs.getNString("stu_no"));
                list_second.add(rs.getNString("stu_ename"));
            }

        //test = list.get(2);
    } catch (SQLException sqex) {
        System.out.println("SQLException: " + sqex.getMessage());
        System.out.println("SQLState: " + sqex.getSQLState());
    } finally {
        try {
            if (stmt != null)
                stmt.close();
            if (con != null)
                con.close();
            if (rs != null)
                rs.close();
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }


}

}

3 个答案:

答案 0 :(得分:2)

您需要在JDBC连接URL中设置字符编码:

String url = "jdbc:mysql://localhost:3306/test?useUnicode=yes&characterEncoding=UTF-8";

否则,客户端和服务器之间的字符编码会在连接时自动检测到,这意味着查询中的朝鲜语文本将被错误编码,并可能导致查询返回零结果。
您可以在MySQL JDBC驱动程序文档中了解更多相关信息 - Using Character Sets and Unicode

答案 1 :(得分:1)

这个答案表明Java代码没有问题;这是你的数据。

您可以在MySQL管理工具中运行查询并获取非空的结果集吗?如果是,则表示Java代码存在问题。必须有一个错误,你要么没有供应,要么吞下一个空的捕获区。

您是获得错误消息或堆栈跟踪,还是结果集为空?如果是后者,也许没有学生编号20001001。

答案 2 :(得分:1)

MySQL函数“substring”参数0错误,只允许多于零。