Oihana PHP System

Sequence

Property keys mapped to the columns of the OpenEdge SQL `SYSSEQUENCES` system catalog table.

SYSSEQUENCES contains one row for each sequence generator defined in the database.

Tags
see
https://docs.progress.com/bundle/openedge-sql-reference/page/SYSSEQUENCES.html
author

Marc Alcaraz (eKameleon)

since
1.0.0

Table of Contents

Constants

CYCLE  : string = 'cycle'
Whether the sequence cycles back to its minimum once `maxValue` is reached (`cycle`).
INCREMENT  : string = 'increment'
Increment between two successive values (`increment`).
INITIAL_VALUE  : string = 'initialValue'
Initial value of the sequence (`initial`).
MAX_VALUE  : string = 'maxValue'
Maximum value of the sequence (`maxval`).
MIN_VALUE  : string = 'minValue'
Minimum value of the sequence (`minval`).
SEQUENCE_OWNER  : string = 'sequenceOwner'
Owner (SQL schema) of the sequence (`seqowner`).

Constants

CYCLE

Whether the sequence cycles back to its minimum once `maxValue` is reached (`cycle`).

public string CYCLE = 'cycle'

INCREMENT

Increment between two successive values (`increment`).

public string INCREMENT = 'increment'

INITIAL_VALUE

Initial value of the sequence (`initial`).

public string INITIAL_VALUE = 'initialValue'

MAX_VALUE

Maximum value of the sequence (`maxval`).

public string MAX_VALUE = 'maxValue'

MIN_VALUE

Minimum value of the sequence (`minval`).

public string MIN_VALUE = 'minValue'

SEQUENCE_OWNER

Owner (SQL schema) of the sequence (`seqowner`).

public string SEQUENCE_OWNER = 'sequenceOwner'
On this page

Search results