Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.
the return result is either an error message or a handle for a query result.
Description
pg_select submits a SELECT query to the
Postgres backend, and executes a
given chunk of code for each tuple in the result.
The queryString
must be a SELECT statement. Anything else returns an error.
The arrayVar
variable is an array name used in the loop. For each tuple,
arrayVar is filled in
with the tuple field values, using the field names as the array
indexes. Then the
queryProcedure
is executed.
Usage
This would work if table "table" has fields "control" and "name"
(and, perhaps, other fields):