Java Null 指针异常与结果集 sqlite



嗨,我得到空指针异常,但我无法弄清楚为什么

DAO(不使用实用程序连接类(

package application.model;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import application.util.SqlConnection;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
public class OperatoreDAO {
public static ObservableList<Operatore> cercaOperatori() throws SQLException, ClassNotFoundException {
//Declare a SELECT statement
String selectStmt = "SELECT * FROM Operatori WHERE DataCessazione=""";
//Execute SELECT statement
try {
Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("jdbc:sqlite:C:/Users/Utente/Desktop/DB/prova.db");
PreparedStatement stmt = conn.prepareStatement(selectStmt);
ResultSet rsOperatori = stmt.executeQuery();
//Get ResultSet from dbExecuteQuery method
//ResultSet rsOperatori = SqlConnection.dbExecuteQuery(selectStmt);

ObservableList<Operatore> operatoriList = getOperatoriList(rsOperatori);

return operatoriList;
} catch (SQLException e) {
System.out.println("SQL select operation has been failed: " + e);
//Return exception
throw e;
}
}
private static ObservableList<Operatore> getOperatoriList(ResultSet rs) throws SQLException, ClassNotFoundException {
ObservableList<Operatore> operatoriList = FXCollections.observableArrayList();
while (rs.next()) {
Operatore op = new Operatore();
op.setId(rs.getInt("idOperatore"));
op.setCognome(rs.getString("Cognome"));
op.setNome(rs.getString("Nome"));
op.setSesso(rs.getString("Sesso"));
op.setEta(rs.getInt("Eta"));
op.setDomicilio(rs.getString("Domicilio"));
operatoriList.add(op);
}
return operatoriList;
}

}

package application.model;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.StringProperty;
public class Operatore {
private  IntegerProperty id;
private  StringProperty cognome;
private  StringProperty nome;
private  StringProperty sesso;
private  IntegerProperty eta;
private  StringProperty domicilio;

public int getId() {
return id.get();
}
public void setId(int idIn) {
id.set(idIn);
}
public IntegerProperty idProperty() {
return id;
}
public String getNome() {
return nome.get();
}
public void setNome(String nomeIn) {
nome.set(nomeIn);
}
public StringProperty nomeProperty() {
return nome;
}
public String getCognome() {
return cognome.get();
}
public void setCognome(String cognomeIn) {
cognome.set(cognomeIn);
}
public StringProperty cognomeProperty() {
return cognome;
}
public String getSesso() {
return sesso.get();
}
public void setSesso(String sessoIn) {
sesso.set(sessoIn);
}
public StringProperty sessoProperty() {
return sesso;
}
public int getEta() {
return eta.get();
}
public void setEta(int etaIn) {
eta.set(etaIn);
}
public IntegerProperty etaProperty() {
return eta;
}
public String getDomicilio() {
return domicilio.get();
}
public void setDomicilio(String domicilioIn) {
domicilio.set(domicilioIn);
}
public StringProperty domicilioProperty() {
return domicilio;
}

}

我在这里有两个问题,第一个是我从连接实用程序类中关闭了结果集,因此如您所见,我将连接代码传输到 DAO,并注释了使用实用程序类的行(我认为不是最佳选择,但我不知道如何管理 CachedRowSet(

第二个是,当我尝试在 DAO 内部连接时,我尝试在调用 getOperatoriList 方法之前从结果集中打印一行,它返回我想要的内容。 然后,当调用getOperatoriList方法时,它不会将值设置为Operatore对象,并且我得到NullPointerException。 有人可以弄清楚问题出在哪里?

Slaw 已经在评论回复中发布了这个,但模型对象中的字段永远不会初始化。 在 to 调用Operatore.setId()中,id字段为空,导致 NullPointerException。

可以返回一个空的结果集,而不是一个仅为空的结果集。

在将 rs == null 传递给您的方法之前,请尝试检查它是否为 null。

相关内容

  • 没有找到相关文章

最新更新