Re: BYTEA data type

From: Alex Pilosov <alex(at)pilosoft(dot)com>
To: Ben-Nes Nimrod <nimrod(at)canaan(dot)co(dot)il>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: BYTEA data type
Date: 2001-07-15 19:50:18
Message-ID: Pine.BSO.4.10.10107151546580.18443-100000@spider.pilosoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Unfortunately, 7.2 (current development) version docs are not online, and
current relased version (7.1.2) doesn't have it documented.

Bytea just stores a chunk of data. The difference between bytea and blobs
is that you cannot manipulate small chunks of bytea data currently, entire
bytea data must be extracted. (If you have 1-G long string in a bytea
column, and you only need first 8K bytes, entire string must be retrieved
first). If that's not a problem for you, use bytea.

There are some rules on escaping of bytea data. Do a search on
http://fts.postgresql.org for 'bytea escaping' for details.

On Sun, 15 Jul 2001, Ben-Nes Nimrod wrote:

> Howdie
> im trying to make a table which will hold information about files and i need to use the "blob" data type {im a former mysql user}
> now i understood that there is a better data type which is called "bytea".
> is it true?
> and y i cant find it at the manual? {and also at pgaccess program}
> and where (if exist) can i find the full list of data types which r available at postgresql?
> with thanks in advance
> Yonatan Ben-Nes
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Peter Eisentraut 2001-07-15 20:00:19 Re: pg_dump problem with PostgreSQL v7.1.2
Previous Message Ben-Nes Nimrod 2001-07-15 19:49:31 BYTEA data type