#include <jansson.h>
#include "irods_util_library.h"
#include "linked_list.h"
Go to the source code of this file.
|
struct | QueryResult |
| A datatype for accessing a single result of a search on an iRODS server. More...
|
|
struct | QueryResults |
| A datatype for holding an array of the results of a search on an iRODS server. More...
|
|
◆ GetAllMetadataDataAttributeNames()
Get all of the data attribute names within the iCAT system of an iRODS server.
- Parameters
-
connection_p | The connection to an iRODS server. |
- Returns
- A newly-allocated QueryResults listing all of the data attribute names or
NULL
upon error.
- See also
- GetAllAttributeNames
◆ GetAllMetadataDataAttributeValues()
Get all of the data attribute values for the given name within the iCAT system of an iRODS server.
- Parameters
-
connection_p | The connection to an iRODS server. |
name_s | The metadata attribute name to get all of the values for. |
- Returns
- A newly-allocated QueryResults listing all of the data attribute values or
NULL
upon error.
◆ GetAllMetadataCollectionAttributeNames()
Get all of the collection attribute names within the iCAT system of an iRODS server.
- Parameters
-
connection_p | The connection to an iRODS server. |
- Returns
- A newly-allocated QueryResults listing all of the collection attribute names or
NULL
upon error.
◆ GetAllMetadataUserAttributeNames()
Get all of the user attribute names within the iCAT system of an iRODS server.
- Parameters
-
connection_p | The connection to an iRODS server. |
- Returns
- A newly-allocated QueryResults listing all of the user attribute names or
NULL
upon error.
◆ GetAllMetadataAttributeValues()
QueryResults* GetAllMetadataAttributeValues |
( |
struct IRodsConnection * |
connection_p, |
|
|
const int |
key_id, |
|
|
const char *const |
key_s, |
|
|
const int |
value_id |
|
) |
| |
Get all of the data attribute names within the iCAT system of an iRODS server for give column id.
- Parameters
-
connection_p | The connection to an iRODS server. |
key_id | The id of the column to use as the key for. |
key_s | The name of the key column. |
value_id | The id of the column to get values for. |
- Returns
- A newly-allocated QueryResults listing all of the data attribute names or
NULL
upon error.
- See also
- GetAllMetadataDataAttributeValues