sql >> Database >  >> RDS >> PostgreSQL

JLabel bijwerken via SetIcon van bytea-gegevenstype in postgres

Ik heb geen installatie van PostgreSQL beschikbaar, maar ik denk dat je het afbeeldingsformaat moet schrijven/lezen en niet de BufferedImage gegevens.

Schrijven kan er bijvoorbeeld ongeveer zo uitzien...

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();
}

En lezen kan er ongeveer zo uitzien...

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. Verwijzend naar sessievariabelen (\set var='value') uit PL/PGSQL

  2. Hoe PostgreSQL logische replicatie te optimaliseren

  3. Oracle selecteren voor updategedrag

  4. Hoe TABLE af te kappen in Oracle