我想做一个CRUD但我的变量SortieA有问题它是NULL吗?见图片=> enter image description here
这是我课堂相册中的一个问题吗?
public class Album {
private String codeA;
private String titreA;
private Date sortieA;
private Chanteur chanteurAlb;
public Album() {
}
public Album(String codeA, String titreA, Date sortieA, Chanteur chanteurAlb) {
this.codeA = codeA;
this.titreA = titreA;
this.sortieA = sortieA;
this.chanteurAlb = chanteurAlb;
}
public String getCodeA() {
return codeA;
}
public void setCodeA(String codeA) {
this.codeA = codeA;
}
public String getTitreA() {
return titreA;
}
public void setTitreA(String titreA) {
this.titreA = titreA;
}
public Date getSortieA() {
return sortieA;
}
public void setSortieA(Date sortieA) {
this.sortieA = sortieA;
}
public Chanteur getChanteurAlb() {
return chanteurAlb;
}
public void setChanteurAlb(Chanteur chanteurAlb) {
this.chanteurAlb = chanteurAlb;
}
这是我的要求
public boolean insertAlbum (Album alb)
{
boolean ok = ConnexionMySQL.getInstance().actionQuery("Insert into album (CodeA, TitreA, SortieA, IdentC) values ('" + alb.getCodeA() + "','" + alb.getTitreA() +
"'," + alb.getSortieA() + "," + alb.getChanteurAlb().getIdentC() + ")");
return ok;
}
请问您有什么想法吗?
答案 0 :(得分:0)
很明显,您在表单中输入的日期未在您的Album对象中设置,因为您在sql语句中得到null。所以你需要找出丢失的地方 一旦解决了,你需要在insertAlbum()方法中将日期解析为格式正确的字符串,因为在sql字符串中使用原始日期将不起作用。