Product Documentation

c-treeDB API for C++ - Developers Guide

Previous Topic

Next Topic

CTDatabase::DeleteTable

Syntax

void DeleteTable(const CTString& Name, const CTString& Password)

Parameters

  • Name [in] The name of the table to delete from the database.
  • Password [in] The table password.

Description

Drops a table from the database, and delete the files from disk.

Return

None.

Example


pMyTable->Close(); // close the custmast table.

pMyDatabase->DeleteTable("custmast", my_table_password);


See also

DropTable(), AddTable()

TOCIndex