如何向postgreSQL中添加bytea类型的大对象数据

2025-04-02 10:47:10
推荐回答(1个)
回答1:

这种一般都是通过程序添加,如使用Java

//创建表
CREATE TABLE images (imgname text, img bytea);
插入图片
File file = new File("myimage.gif");
FileInputStream fis = new FileInputStream(file);
PreparedStatement ps = conn.prepareStatement("INSERT INTO images VALUES (?, ?)");
ps.setString(1, file.getName());
ps.setBinaryStream(2, fis, (int)file.length());
ps.executeUpdate();
ps.close();
fis.close();