Hola compañeros
tengo un problema con un complemento que le agregue a netbeans.
en la base de datos tengo un campo tipo
date y cree un objeto tipo
date en el codigo java. pero me aparece un error en el PreparedStatement.
este es el codigo:
Código java:
Ver original Date f
=new Date();//creacion objeto date ref=txtReferencia.getText();
nom=NomProducto.getText();
preUnit=PrecioUnit.getText();
cant=cantidad.getText();
total=Total.getText();
f=fecha.getDate(); //Aqui se instancia el objeto
int PrecioUnitario,Cant,Tot;
PrecioUnitario
=Integer.
parseInt(preUnit
);
Ssql = "INSERT INTO ingresar_producto(Referencia, Nombre, Precio_unit, Cantidad, Total, Fecha_ingreso)" +
"VALUES(?, ?, ?, ?, ?, ?)";
mensaje = "Los datos se han Insertado de Manera Satisfactoria...";
try
{
pst.setString(1, ref);
pst.setString(2, nom);
pst.setInt(3, PrecioUnitario);
pst.setInt(4, Cant);
pst.setInt(5, Tot);
pst.setDate(6, f);//ERROR no suitable method found for setdate...
int n = pst.executeUpdate();
if(n > 0)
{
}
}
{
}