ars_GetListSchema(ctrl, changedSince, schemaType, name)
changedSince
schemaType
- 3.x only
Value | Meaning |
0 | Retrieve all visible/accessible schemas. |
1 | Retrieve only visible/accessible base schemas. |
2 | Retrieve only visible/accessible join schemas. |
4 | Retrieve only visible/accessible join schemas that depend on the schema named in the ``name'' parameter. |
5 | Retrieve only visible/accessible base schemas that the schema named in the ``name'' parameter depends on. |
name
- 3.x only
undef
.
Example:
To retrieve the full list of all schemas (visible and hidden) accessible
to the user on an ARS version 3.0 server:
@schemas = ars_GetListSchema($c, 0, 0 + 1024); for ($i = 0; $i <= $#schemas ; $i++) { print "$schemas[$i]\n"; }
Last changes to this page 7th August 1997 by d.j.adams@soton.ac.uk