sql >> Database teknologi >  >> RDS >> PostgreSQL

Opdatering af JLabel via SetIcon fra bytea-datatype i postgres

Jeg har ikke en installation af PostgreSQL tilgængelig, men jeg synes, du skal skrive/læse billedformatet og ikke BufferedImage data.

Skrift kan f.eks. ligne...

Connection con = ...;
BufferedImage img = ...;
try (PreparedStatement stmt = con.prepareStatement("insert into tableofimages (image) values (?)")) {
    try (ByteArrayOutputStream baos = new ByteArrayOutputStream()) {
        ImageIO.write(img, "png", baos);
        try (ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray())) {
            stmt.setBinaryStream(1, bais);
            int rows = stmt.executeUpdate();
            System.out.println(rows + " rows updated");
        }
    }
} catch (SQLException | IOException exp) {
    exp.printStackTrace();
}

Og læsning kan ligne...

Connection con = ...;
try (PreparedStatement stmt = con.prepareStatement("select image from tableofimages")) {
    try (ResultSet rs = stmt.executeQuery()) {
        while (rs.next()) {
            try (InputStream is = rs.getBinaryStream(1)) {
                BufferedImage img = ImageIO.read(is);
            }
        }
    }
} catch (SQLException | IOException exp) {
    exp.printStackTrace();
}



  1. Nedetid og Hotpatch-anvendelsestilstand i adop R12.2

  2. SQL Server Transactional Replication Internals – Del 2

  3. WHERE IN-tilstand accepterer ikke strengværdi

  4. Forbinder C# til Oracle