crud->添加错误消息

ddhy6vgd  于 2021-06-23  发布在  Mysql
关注(0)|答案(1)|浏览(314)

我想做一个积垢,但我有一个问题,在我的变量sortiea它是空的?请参见此处图片=>在此处输入图像描述
这是我班级相册里的问题吗?

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;
    }

你有什么想法吗?
在此处输入图像描述

m3eecexj

m3eecexj1#

很明显,表单中输入的日期没有在相册对象中设置,因为在sql语句中为null。所以你得弄清楚它在哪里丢了。
一旦解决了这个问题,就需要在insertalbum()方法中将日期解析为格式正确的字符串,因为在sql字符串中使用原始日期是行不通的。

相关问题