Method syntax
|
Description
|
LOGICAL CanFindGroup (
pcGroup AS CHARACTER , pcTable AS CHARACTER , pcField AS CHARACTER , pcIndex AS CHARACTER , pcCollation AS CHARACTER1 ) |
Returns TRUE if there is a partition object in the collection for the tenant group and an appropriate combination of table, field, and index, each specified by name in the respective parameters to identify a single partition, using a blank value as needed.2
|
LOGICAL CanFindTenant (
pcTenant AS CHARACTER , pcTable AS CHARACTER , pcField AS CHARACTER , pcIndex AS CHARACTER , pcCollation AS CHARACTER3 ) |
Returns TRUE if there is a partition object in the collection for the tenant and an appropriate combination of table, field, and index, each specified by name in the respective parameters to identify a single partition, using a blank value as needed.4
|
LOGICAL Contains ( partition AS IPartition )
|
Returns TRUE if the partition object referenced by partition is in the collection.
|
IPartition FindGroup (
pcGroup AS CHARACTER , pcTable AS CHARACTER , pcField AS CHARACTER , pcIndex AS CHARACTER , pcCollation AS CHARACTER5 ) |
Returns the partition object from the collection for the tenant group and an appropriate combination of table, field, and index, each specified by name in the respective parameters, using a blank value as needed.6
Returns the Unknown value (?) if the partition object is not found.
|
IPartition FindTenant (
pcTenant AS CHARACTER , pcTable AS CHARACTER , pcField AS CHARACTER , pcIndex AS CHARACTER , pcCollation AS CHARACTER7 ) |
Returns the partition object from the collection for the tenant and an appropriate combination of table, field, and index, each specified by name in the respective parameters to identify a single partition, using a blank value as needed.8
Returns the Unknown value (?) if the partition object is not found.
|