Files
doc-exports/docs/dws/dev/dws_04_0727.html
luhuayi 177cd61a57 DWS DEVG 910.211 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: luhuayi <luhuayi@huawei.com>
Co-committed-by: luhuayi <luhuayi@huawei.com>
2025-05-05 07:44:03 +00:00

6.1 KiB

PG_CURSORS

PG_CURSORS displays available cursors.

Table 1 PG_CURSORS columns

Column

Type

Description

Name

Text

Cursor name.

statement

Text

Query statement when the cursor is declared to change.

is_holdable

boolean

Whether the cursor is holdable (that is, it can be accessed after the transaction that declared the cursor has committed). If it is, its value is true.

is_binary

boolean

Whether the cursor was declared BINARY. If it was, its value is true.

is_scrollable

boolean

Whether the cursor is scrollable (that is, it allows rows to be retrieved in a nonsequential manner). If it is, its value is true.

creation_time

Timestamp with time zone

Timestamp of the cursor.