如何从外部java类获取ResultSet

时间:2014-01-07 14:34:48

标签: java sql jdbc vector

我有一个ResultSet对象

ResultSet theInfo = stmt.executeQuery(sqlQuery);

但我希望有一个可以从另一个java类调用的函数

public Vector loadStuff(){
    try {
         while (theInfo.next()){
             aVector.addElement(new String(theInfo.getString("aColumn")));    // puts results into vectors
         }

    } catch (SQLException e) {
        e.printStackTrace();
    }
    return aVector;
}

我不完全确定如何解决这个问题。我想要一些如何调用返回填充向量的void方法。这有可能吗?

1 个答案:

答案 0 :(得分:1)

假设您有一个类Demo,并且方法getVector遵循给定的方法。

class Demo {

public Vector getVector(ResultSet theInfo) {
    if(theInfo==null){
        throw new IllegalArgumentException("ResultSet is null");
    }
    Vector aVector = new Vector();
    try {
        while (theInfo.next()) {
            aVector.addElement(new String(theInfo.getString("aColumn"))); 
        }

    } catch (SQLException e) {
        e.printStackTrace();
    }
    return aVector;
}

}

现在在获取ResultSet后调用getVector。

ResultSet theInfo = stmt.executeQuery(sqlQuery);

Demo demo =new Demo();

Vector vector=demo.getVetor(theInfo );