您的位置:寻梦网首页编程乐园数据库PostgreSQL 7.2 Documentation

2.4. 内建的已注册函数

有两个内建的已注册函数, lo_import lo_export 可以很方便的在 SQL 查询里面使用.下面是一些例子

CREATE TABLE image (
    name            text,
    raster          oid
);

INSERT INTO image (name, raster)
    VALUES ('beautiful image', lo_import('/etc/motd'));

SELECT lo_export(image.raster, '/tmp/motd') FROM image
    WHERE name = 'beautiful image';