使用ListTable接口獲取當前實例下已創建的所有表的表名。
前提條件
已初始化Client。更多信息,請參見初始化OTSClient。
已創建數據表。更多信息,請參見創建數據表。
接口
/**
* 獲取該實例下所有的表名。
* @api
* @param [] $request 請求參數,為空。
* @return [] 請求返回。
* @throws OTSClientException 當參數檢查出錯或服務端返回校驗出錯時拋出異常。
* @throws OTSServerException 當OTS服務端返回錯誤時拋出異常。
*/
public function listTable(array $request);
請求格式
請求參數為空,即無需設置請求參數。
$result = $client->listTable([]);
結果格式
返回結果是一個String類型的list,list中的每一項均是一個表名。
[
'<string>',
'<string>',
'<string>'
]
示例
以下示例用于獲取實例下所有表的表名。
$result = $otsClient->listTable([]);
相關文檔
文檔內容是否對您有幫助?