I am new to JDBC and I have the following error.
Caused by: java.lang.NullPointerException
at br.dao.UsuariousGruposDAO.select(UsuariousGruposDAO.java:128)
at br.view.UsuariousGruposBean.getListOfUserGroups(UsuariousGruposBean.java:54)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
I tried using JDBC's placement holders to make my method more flexible:
public List<UsuariousGrupos> select(Integer var) {
List<UsuariousGrupos> ug= null;
try {
conn.Connection();
stmt = conn.getPreparedStatement("select id_usuario, id_grupo from usuarios_grupos where id_grupo = ?" );
stmt.setInt(1, var);
ResultSet rs = stmt.executeQuery();
ug = new ArrayList<UsuariousGrupos>();
while (rs.next()) {
ug.add(getUserGrupos(rs));
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
conn.Disconnected();
}
return ug;
}
public UsuariousGrupos getUserGrupos(ResultSet rs) {
try {
UsuariousGrupos ug = new UsuariousGrupos(rs.getInt("id_usuario"), rs.getInt("id_grupo"));
return ug;
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}
}
However, after doing so. I get the null pointer exception error. Apparently, it has something to do with my List select (Integer var) method, and this following method:
public List<UsuariosGrupos> getListOfUserGroups() {
List<UsuariosGrupos> usuariosGruposList = userGrpDAO.getUserGroupByID(var2);
listOfUserGroups = usuariosGruposList;
return listOfUserGroups;
}
This the rest of my JDBC code related to my Lst select (Integr var) method.
public class UsuariousGruposDAO implements GenericDAO {
private ConnectionManager conn;
private PreparedStatement stmt;
private boolean returnState;
public UsuariousGruposDAO() {
conn = ConnectionManager.getInstance();
stmt = null;
}
My connection manager:
public static ConnectionManager getInstance() {
if (connectionManager == null) {
connectionManager = new ConnectionManager();
}
return connectionManager;
}
private ConnectionManager() {
}
public void Connection() {
if (conn == null) {
try {
String dbMySQL = MySQL + IP + "/" + database;
Class.forName(DRIVER);
conn = DriverManager.getConnection(dbMySQL, user, password);
conn.setAutoCommit(true);
System.out.println("Connected!!");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
} else {
System.out.println(conn + "is connected");
}
}
public PreparedStatement getPreparedStatement(String statement) {
try {
if (stmt == null) {
if (conn == null) {
Connection();
}
stmt = conn.prepareStatement(statement);
}
} catch (SQLException ex) {
Logger.getLogger(ConnectionManager.class.getName()).log(Level.SEVERE, null, ex);
}
return stmt;
}
}
Anyone has any idea why a nullpointer is happening? :/
null? You just need to make sure that it is notnullor you need to bypass it. You have by the way not fixed/improved the code at all after your previous question: stackoverflow.com/questions/8182880/… – BalusC Nov 21 '11 at 11:11stmtisnull? Why did you not fix the code after the previous question? – BalusC Nov 21 '11 at 11:14varis null, and since it's an Integer it might be auto unboxed and generating the NPE. – Augusto Nov 21 '11 at 11:18