バージョンごとのドキュメント一覧

TYPE

TYPE <refpurpose>define a new data type</refpurpose> — 新しいデータ型を定義します。

概要

TYPE type_name IS ctype

説明

<title>Description</title>

The <command>TYPE</command> command defines a new C type. It is equivalent to putting a <literal>typedef</literal> into a declare section. TYPEコマンドは新しいCの型を定義します。 これは宣言セクションにtypedefを記述することと同じです。

This command is only recognized when <command>ecpg</command> is run with the <option>-c</option> option. ecpg-cオプション付きで実行された場合にのみこのコマンドは認識されます。

パラメータ

<title>Parameters</title>
type_name #

The name for the new type. It must be a valid C type name. 新しい型の名前です。 これは有効なCの型名でなければなりません。

ctype #

A C type specification. Cの型指定です。

<title>Examples</title>
EXEC SQL TYPE customer IS
    struct
    {
        varchar name[50];
        int     phone;
    };

EXEC SQL TYPE cust_ind IS
    struct ind
    {
        short   name_ind;
        short   phone_ind;
    };

EXEC SQL TYPE c IS char reference;
EXEC SQL TYPE ind IS union { int integer; short smallint; };
EXEC SQL TYPE intarray IS int[AMOUNT];
EXEC SQL TYPE str IS varchar[BUFFERSIZ];
EXEC SQL TYPE string IS char[11];

Here is an example program that uses <command>EXEC SQL TYPE</command>: 以下にEXEC SQL TYPEを使用するプログラム例を示します。

EXEC SQL WHENEVER SQLERROR SQLPRINT;

EXEC SQL TYPE tt IS
    struct
    {
        varchar v[256];
        int     i;
    };

EXEC SQL TYPE tt_ind IS
    struct ind {
        short   v_ind;
        short   i_ind;
    };

int
main(void)
{
EXEC SQL BEGIN DECLARE SECTION;
    tt t;
    tt_ind t_ind;
EXEC SQL END DECLARE SECTION;

    EXEC SQL CONNECT TO testdb AS con1;
    EXEC SQL SELECT pg_catalog.set_config('search_path', '', false); EXEC SQL COMMIT;

    EXEC SQL SELECT current_database(), 256 INTO :t:t_ind LIMIT 1;

    printf("t.v = %s\n", t.v.arr);
    printf("t.i = %d\n", t.i);

    printf("t_ind.v_ind = %d\n", t_ind.v_ind);
    printf("t_ind.i_ind = %d\n", t_ind.i_ind);

    EXEC SQL DISCONNECT con1;

    return 0;
}

The output from this program looks like this: このプログラムの出力は以下のようになります。

t.v = testdb
t.i = 256
t_ind.v_ind = 0
t_ind.i_ind = 0

互換性

<title>Compatibility</title>

The <command>TYPE</command> command is a PostgreSQL extension. TYPEコマンドはPostgreSQLの拡張です。