Re: OID assistance

Поиск
Список
Период
Сортировка
От Greg Spiegelberg
Тема Re: OID assistance
Дата
Msg-id 42160FA7.8030607@cranel.com
обсуждение исходный текст
Ответ на Re: OID assistance  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: OID assistance
Список pgsql-admin
Tom Lane wrote:
>
> Exactly how are you "using OIDs to store files"?  Do you mean you're
> using large objects?

The table is

                            Table "public.imgs"
   Column  |  Type  |                      Modifiers
----------+--------+------------------------------------------------------
  id       | bigint | not null default nextval('public.imgs_id_seq'::text)
  file     | text   |
  contents | oid    |
Indexes: imgs_pkey primary key btree (id)

Data is loaded using INSERT's.

insert into imgs values (1,'/path/to/myfile',lo_import('/path/to/myfile'));

Greg

--
Greg Spiegelberg
  Product Development Manager
  Cranel, Incorporated.
  Phone: 614.318.4314
  Fax:   614.431.8388
  Email: gspiegelberg@cranel.com
Technology. Integrity. Focus.


В списке pgsql-admin по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: OID assistance
Следующее
От: David.Jacques@CCRS.NRCan.gc.ca
Дата:
Сообщение: Libpq: Passing a Pgconn* object between console applications ?