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!