Data.Cloud.AzureAPI.TAzureTableService.DeleteTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DeleteTable(const TableName: string; ResponseInfo: TCloudResponseInfo = nil): Boolean;

C++

bool __fastcall DeleteTable(const System::UnicodeString TableName, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AzureAPI.pas
Data.Cloud.AzureAPI.hpp
Data.Cloud.AzureAPI TAzureTableService

Description

Deletes the table with the given name.

The DeleteTable method deletes the table with the given name. DeleteTable marks the table for deletion and hides it from future calls when querying the list of available tables. However, it is not deleted from the server right away, and for a short time after calling DeleteTable, you will not be able to create a new table with the same name.

DeleteTable returns True if the deletion is successful, False otherwise.

The TableName parameter specifies the name of the table to delete.

The ResponseInfo parameter specifies the optional class where to store response info.

See Also