Re: [HACKERS] standards question

Поиск
Список
Период
Сортировка
От Thomas G. Lockhart
Тема Re: [HACKERS] standards question
Дата
Msg-id 350FF129.E85F2FA9@alumni.caltech.edu
обсуждение исходный текст
Ответ на Re: [HACKERS] standards question  (Michael Meskes <meskes@topsystem.de>)
Список pgsql-hackers
> Could you please enlighten me Tom? :-)

*grin* As you could see I was trying to get out of doing work...

OK, here is a short series of extracts from the book:

Summary list of SQL statements having to do with SQL descriptor areas:
  ALLOCATE DESCRIPTOR, DEALLOCATE DESCRIPTOR
  GET DESCRIPTOR, SET DESCRIPTOR
  DESCRIBE

"SQLDA" is a useful abbreviation (for the SQL descriptor area) but it is
not an official standard term. Note clearly, moreover, that several SQL
products do already support some kind of SQLDA, and even refer to it by
that name, but those SQLDAs are typically not the same as the "SQLDA"
defined in the standard. In particular, the SQLDA in the standard is
*encapsulated* (meaning that its internal structure is not specified in
the standard and is thus *a fortiori* hidden from the user), whereas the
same is typically not true of the SQLDAs in current products.

We list below some of the more important of these components (the
retrievable and settable components of the SQL92 SQLDA):

NAME    character string
UNAMED    exact numeric with scale 0 (tgl- I'll call this int)
TYPE    int
LENGTH    int
RETURNED_LENGTH int
RETURNED_OCTET_LENGTH int
PRECISION int
SCALE    int
DATA    (depends on type, length, etc)
INDICATOR int

If the INDICATOR value is negative, the DATA value is undefined
("null"). The UNAMED component is set to 1 if the NAME value is
implementation-dependent (loosely, if the corresponding column is
unnamed).

Syntax:
  ALLOCATE DESCRIPTOR [LOCAL|GLOBAL] descriptor [WITH MAX occurences]

(descriptor is specified inside single quotes). The GLOBAL is default if
not specified.

There are several ways to populate a descriptor:

1) Specify
  INTO SQL DESCRIPTOR descriptor
in an EXECUTE statement (in which case the prepared statement must be a
single-row select).

2) Specify the same in a dynamic FETCH statement.

3) Specify
  USING SQL DESCRIPTOR descriptor
in a DESCRIBE INPUT or DESCRIBE OUTPUT statement. This is the
recommended method for the most highly generalized type of application.

4) Execute
  SET DESCRIPTOR descriptor ...

Each such statement will assign values to components within a *single
item descriptor* within the SQLDA.

...

GET DESCRIPTOR descriptor target = COUNT

where target is a parameter or host variable of type exact numeric with
scale 0 (int??).


My book has quite a bit more information on this, but much more will be
too much to type :(

                        - Tom

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] Buffer overuns with the Electric fence debugging library
Следующее
От: "Thomas G. Lockhart"
Дата:
Сообщение: Re: [HACKERS] another standards question