Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在 bytea 类型的列中将图像插入到 postgres 数据库中,我是否必须从 PGDATA 的路径插入?谢谢
一种方法是使用 bytea 数据类型创建列并运行此查询:
插入表(bytea 列)值( bytea('C:\image.jpg'));
这会将存储“C:\image.jpg”转换为二进制表示,以后可以从文件夹中检索图像。
另一种有效的方法是将图像转换为 base64 字符串并将其存储在数据库中。