このページを編集する際は、編集に関する方針に従ってください。
概要 †
- データ型ErrorDataのstatic配列(配列数ERRORDATA_STACK_SIZE(定数5の別名))。ErrorDataは以下のメンバを持つ構造体。
- elevelを、intとして定義
- output_to_serverを、bool(charの別名)として定義
- output_to_clientを、bool(charの別名)として定義
- show_funcnameを、bool(charの別名)として定義
- filenameを、const charへのポインタとして定義
- linenoを、intとして定義
- funcnameを、const charへのポインタとして定義
- sqlerrcodeを、intとして定義
- messageを、charへのポインタとして定義
- detailを、charへのポインタとして定義
- hintを、charへのポインタとして定義
- contextを、charへのポインタとして定義
- cursorposを、intとして定義
- internalposを、intとして定義
- internalqueryを、charへのポインタとして定義
- saved_errnoを、intとして定義
実装 †
static ErrorData errordata[ERRORDATA_STACK_SIZE];
- ErrorData/postgresql-8.1.4 -- 以下のメンバを持つ構造体
- elevelを、intとして定義
- output_to_serverを、bool(charの別名)として定義
- output_to_clientを、bool(charの別名)として定義
- show_funcnameを、bool(charの別名)として定義
- filenameを、const charへのポインタとして定義
- linenoを、intとして定義
- funcnameを、const charへのポインタとして定義
- sqlerrcodeを、intとして定義
- messageを、charへのポインタとして定義
- detailを、charへのポインタとして定義
- hintを、charへのポインタとして定義
- contextを、charへのポインタとして定義
- cursorposを、intとして定義
- internalposを、intとして定義
- internalqueryを、charへのポインタとして定義
- saved_errnoを、intとして定義
- ERRORDATA_STACK_SIZE/postgresql-8.1.4 -- 定数5の別名。
呼出元 †
備考 †
履歴 †
コメント †