Location:
d32dbms.h
Link against: edbms.lib
CDbNames
Supported from 5.0
Maintains a list of DBMS names, and is used to report the structure of a database to the client.
This class is not intended for user derivation.
|
Defined in CDbNames
:
AddL()
, Count()
, NewLC()
, operator[]()
, ~CDbNames()
Inherited from CBase
:
operator new()
static CDbNames* NewLC();
Constructs a new empty names list object and returns a pointer to it.
The function leaves if there is not enough memory to complete this operation. It also places a pointer to the names list object onto the cleanup stack.
|
void AddL(const TDesC& aName);
Adds a name to the end of the list.
The function leaves if there is not enough memory to perform this operation.
|
TInt Count() const;
Returns the number of names in the list.
|
const TDesC& operator[](TInt anIndex) const;
Returns the name at a specified index in the list.
|
|