sql >> Databasteknik >  >> RDS >> PostgreSQL

Uppdaterar JLabel via SetIcon från bytea-datatyp i postgres

Jag har ingen installation av PostgreSQL tillgänglig, men jag tycker att du ska skriva/läsa bildformatet och inte BufferedImage data.

Till exempel kan skrivandet se ut ungefär som...

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

Och läsning kan se ut ungefär som...

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. SQL Server Latches – Andra Latches att veta om

  2. PostgreSQL - hur renderar man datum i olika tidszoner?

  3. SQLite Left Join

  4. SQL-utvecklare 4.1.2