hola tengo un problema al ejecutar el programa y agregar un nuevo item la descripción aparece null, no se donde prodra estar el error:
public void guardar(Map<String, String> producto) throws SQLException {
ConnectionFactory factory = new ConnectionFactory();
Connection con = factory.recuperaConexion();
Statement statement = con.createStatement();
statement.execute(
"INSERT INTO PRODUCTO (nombre, descripcion, cantidad)"
+ " VALUES ('" + producto.get("NOMBRE") + "', '"
+ producto.get("DESCRIPCION") + "', '" + producto.get("CANTIDAD") + "')",
Statement.RETURN_GENERATED_KEYS);
ResultSet resultSet = statement.getGeneratedKeys();
while(resultSet.next()) {
System.out.println(String.format(
"Fue insertado el producto de ID: %d",
resultSet.getInt(1)));
}
}