将日期从JDateChooser插入到MySql数据库

时间:2018-07-31 09:50:18

标签: java c# mysql sql jdatechooser

您好,我不知道如何将JDateChooser中的日期插入到mysql转换为接受mysql格式的数据中…… 我正在使用MVC Fremework ...并且我以以下方式插入数据 ....

是我的司机课

添加一个jtxfile只是为了尝试使用我的应用程序调用它

txtFecha2 (this.vistaAlumno.getTxtFecha2().getText())

在视图中,我使每个组件都具有GET和SET方法,以便可以从另一个类中使用它们...

JDateChooser称为jdFecha。

public void actionPerformed(ActionEvent e) {

        if (e.getSource() == vistaAlumno.getBtnInsertar()) {

            //obtiene ID de producto  this.mimodelo.getDatosVentaxFechas( this.frmconsulta.__fecha1.getDate(), this.frmconsulta.__fecha2.getDate() ) );
            //String cat[] = this.vistaAlumno.__lista_categorias.getSelectedItem().toString().split("-");
            if (this.modeloAlumno.NuevoProducto(
                    this.vistaAlumno.getTxtMatricula().getText(),
                    this.vistaAlumno.getTxtNombre().getText(),
                    this.vistaAlumno.getTxtApellido_p().getText(),
                    this.vistaAlumno.getTxtApellido_m().getText(),
                    this.vistaAlumno.getTxtSexo().getText(),
                    this.vistaAlumno.getTxtFecha2().getText(),
                    this.vistaAlumno.getTxtDireccion().getText(),
                    this.vistaAlumno.getTxtCorreo().getText()// ,
            // cat[0].trim()
            )) {
                this.vistaAlumno.getJtDatosAlumno().setModel(this.modeloAlumno.getTablaAlumno()); //actualiza JTable
                JOptionPane.showMessageDialog(null, "Nuevo Alumno Registrado");
            } else {
                JOptionPane.showMessageDialog(null, "Error: Verifique los datos del nuevo Alumno");
            }

问候和非常感谢

1 个答案:

答案 0 :(得分:0)

好吧,我不是在看您的代码,但是关于从JDateChooser添加日期,您可以使用此代码

String datee=((JTextField)a.getDateEditor().getUiComponent()).getText();

然后您可以将其添加到

ps.setString(0,a);

在上面的代码中,

  

一个是JDateChooser

     

ps是PreparedStatement

希望对您有帮助