CMetaApplicationGroup Constructors - Teradata Meta Data Services

Teradata Meta Data Services Programmer Guide

Product
Teradata Meta Data Services
Release Number
15.00
Language
English (United States)
Last Update
2018-09-28
Product Category
Teradata Tools and Utilities

CMetaApplicationGroup Constructors

To create a CMetaApplicationGroup object initially, use the default constructor. Follow the constructor with a call to the CreateApplicationGroup function.

Note: Names of application groups must be unique within the repository database.

To read an existing group object from the repository database, instantiate the object using the appropriate constructor, then use the ReadObject function.

CMetaApplicationGroup();

This is the default constructor.

CMetaApplicationGroup(const OBJECTID_t lOID);

This constructor instantiates a CMetaApplicationGroup identified by the ObjectID. Follow the constructor with a call to the ReadObject function.

CMetaApplicationGroup(LPCTSTR name);

This constructor instantiates a CMetaApplicationGroup identified by a name. Follow the constructor with a call to the ReadObject function.