Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to write the following solution for my program: There is a class QueryStatement(String stmt, ResultSet result) where stmt is the Statement-String and result the returned ResultSet.

The implementation as it follows:

    QueryStatement(String stmt, ResultSet result) throws Exception {
        try {
            Class.forName("com.mysql.jdbc.Driver");
            connection  = DriverManager.getConnection("jdbc:mysql://localhost/ordbv3", "root", "eegs");
            statement   = connection.createStatement();

            resultset = statement.executeQuery(stmt);   
            result = resultset; 

        } catch(Exception e) {  
            throw new Exception(e.getMessage());                
        }
    }

Throws an exception at line result = resultset;. I call that constructor as follows:

ResultSet res;
try {
    testdbhandler.new QueryStatement("SELECT ID, Username FROM user;", res);
} catch (Exception e1) {
    e1.printStackTrace();
}

Side information: that catch block is never reached! It runs further and when I try to use res, another exception is thrown with the meaningful message: "null"

Can anyone tell what is or what might could be the problem here?

Thanks for help!

share|improve this question
The second code snippet can't even compile, because res has not been initialized. Show us your real code. And assigning something to a method argument like you're doing in your first snippet doesn't make sense: Java is pass by value. The caller's variable won't be updated by this statement. And you're getting a meaningless error message because you discard the original exception. Call e.printStackTrace() to understand where your error is. – JB Nizet Jul 3 '11 at 15:14
Okay, I think I got it.. I thought Java does call-by-reference calls! I forgot to initialize: ResultSet res = null; But now I see, that I need another solution for this. There is no easy way to cal-by-reference, so I'm going to change my design... But thanks for help! – Stefan R. Falk Jul 3 '11 at 15:32
@Stefan R. Falk: can you please answer the question yourself and then accept that answer? Also, you need to accept answers to previous questions if they fix your problem. – Zecas May 17 '12 at 13:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.