虽然表中有很多行,但JDBC ResultSet只提供一行?

时间:2012-12-31 23:08:00

标签: java jdbc

我在表中有很多行,我在我的数据库上运行相同的查询,即MySql,但java ResultSet只给出表的第一行。这是我的代码。

public ArrayList<String> getAllAlbumsName(Integer uid) {
    ArrayList<String>allAlbumsName = new ArrayList<String>();
    try {
        String qstring = "SELECT albumname FROM picvik_picture_album WHERE " +
                "uid = '" + uid + "';";

        System.out.println(qstring);
        connection = com.picvik.util.MySqlConnection.getInstance().getConnection();
        ptmt = connection.prepareStatement(qstring);
        resultSet = ptmt.executeQuery();
        if(resultSet.next()) {
            System.out.println(resultSet.getString("albumname"));
            allAlbumsName.add(resultSet.getString("albumname"));
        }

        resultSet.close();
        ptmt.close();
        connection.close();


    } catch (Exception e) {
        e.printStackTrace();
    }   
    return allAlbumsName;
}

3 个答案:

答案 0 :(得分:11)

if(resultSet.next()) {
            System.out.println(resultSet.getString("albumname"));
            allAlbumsName.add(resultSet.getString("albumname"));
        }

如果您想获得所有行,则应该是:

while(resultSet.next()) {
        System.out.println(resultSet.getString("albumname"));
        allAlbumsName.add(resultSet.getString("albumname"));
    }

while语句在特定条件为真时继续执行语句块

注意:正如@BalusC评论的那样,你的代码会引入SQL注入攻击,最好使用ptmt.set ...而不是手动构建SQL String。

答案 1 :(得分:2)

尝试while(resultSet.next()) {

而不是if (resultSet.next()) {

答案 2 :(得分:1)

if (resultSet.next()) {更改为while (resultSet.next()) {