Me respondo yo mismo.
Código Java:
Ver original String sql
= "SELECT imagen FROM tabla WHERE id=" + id
; try {
while (resultSet.next()) {
Blob bytesImagen
= resultSet.
getBlob(1);
byte[] bytesLeidos = bytesImagen.getBytes(1, (int) bytesImagen.length());
}
System.
out.
println(e.
getMessage()); }
return imageIcon;
}
Luego se llama con setIcon() de JLabel a esta función.
Saludos!