como cargar y guardar una foto en access y java
este codigo carga la imagen desde akguna ruta pero no la guarda en la base de datos
public void examinar(){
try {
JFileChooser fileChooser = new JFileChooser();
int result = fileChooser.showOpenDialog(null);
if ( result == JFileChooser.APPROVE_OPTION ){
String Ruta = fileChooser.getSelectedFile().getAbsolutePath();
subfoto.setText(String.valueOf(Ruta));
BufferedImage myPicture = ImageIO.read(new File(Ruta));
JLabel picLabel = new JLabel(new ImageIcon( myPicture ));
add( picLabel );
picLabel.reshape(400,70,700,400);}
}
catch(Exception e){ }
}