PostgreSQL Programmer's Guide
PrevNext

Chapter 15. ラージ(巨大な)オブジェクト(Large Objects)

Table of Contents
歴史的な補遺
転置ラージオブジェクト
ラージオブジェクト・インターフェース
組み込み登録された関数
LIBPQ からのラージオブジェクトのアクセス
サンプル・プログラム

In Postgres, data values are stored in tuples and individual tuples cannot span data pages. Postgresでは、データ値はタップルに格納 され、個々のタップルはデータページの大きさを知ることができません。 Since the size of a data page is 8192 bytes, the upper limit on the size of a data value is relatively low. データページのサイズが 8192 バイトであるため、データ値のサイズの 上限は比較的小さなものになっています。 To support the storage of larger atomic values, Postgres provides a large object interface. 巨大な原子値の格納をサポートす るために、 Postgres ではラージオブジェ クト・インターフェースを提供しています。 This interface provides file oriented access to user data that has been declared to be a large type. このインターフェースでは、ラージ型として宣言されたユーザデータへ のファイル指向のアクセスを提供します。 This section describes the implementation and the programmatic and query language interfaces to Postgres large object data. この章では Postgres ラージオブジェクト ・データの実装と、それに対するプログラミング言語と問い合わせ言 語のインターフェースについて解説します。


PrevHomeNext
Functions 歴史的な補遺