Skip to main content

Database index

CREATE_INDEX

create_index(Function f, Charstring par, Charstring indtype, Charstring multiplicity) -> Vector
STABLE

Create index identifier on function f, at parameter par,

index type is indtype, multiplicity one of 'unique' or 'multiple'


create_index(Charstring fn, Charstring par, Charstring indtype, Charstring multiplicity) -> Vector
STABLE

Create index identifier on function named fn, see at parameter par,

index type indtype, and multiplicity one of 'unique' or 'multiple'


DROP_INDEX

drop_index(Function f, Charstring par) -> Integer
STABLE

Remove index on function f at parameter par


drop_index(Charstring fn, Charstring par) -> Integer
STABLE

Remove index on function named fn at parameter par


EXTRACT_ROWS

extract_rows(Collection rows) -> Bag of Vector
STABLE

No description.