Product Documentation

c-treeDB API for C++ - Developers Guide

Previous Topic

Next Topic

CTTable::GetName

Syntax

CTString GetName( ) const

Parameters

This method has no parameters.

Description

Gets the table name, without the name extension.

Return

GetName() returns the table name.

Example


pTable=pDatabase->GetFirstActive();

printf("\nFirst Active table: %s",

pTable->GetName().c_str());


See also

GetPath(), GetOpenMode(), GetPassword(), GetPermission()

TOCIndex